mailr/app/controllers/prefs_controller.rb

14 lines
269 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'
end
end