mailr/app/controllers/prefs_controller.rb
2011-07-31 22:45:29 +02:00

14 lines
269 B
Ruby
Executable file

class PrefsController < ApplicationController
before_filter :check_current_user,:selected_folder
before_filter :get_current_folders, :only => [:index,:compose]
theme :theme_resolver
def index
flash[:notice] = 'Not implemented yet'
end
end