mailr/app/controllers/prefs_controller.rb

16 lines
307 B
Ruby
Raw Normal View History

2011-07-29 20:05:47 +02:00
class PrefsController < ApplicationController
before_filter :check_current_user,:selected_folder
2011-07-31 22:45:29 +02:00
before_filter :get_current_folders, :only => [:index,:compose]
2011-07-29 20:05:47 +02:00
theme :theme_resolver
def index
flash[:notice] = 'Not implemented yet'
2011-08-02 23:12:17 +02:00
@prefs = @current_user.prefs
2011-07-29 20:05:47 +02:00
end
end