2011-07-29 20:05:47 +02:00
|
|
|
class ContactsController < ApplicationController
|
|
|
|
|
|
|
|
before_filter :check_current_user,:selected_folder
|
|
|
|
|
2011-07-31 22:45:29 +02:00
|
|
|
before_filter :get_current_folders, :only => [:index]
|
2011-07-29 20:05:47 +02:00
|
|
|
|
|
|
|
theme :theme_resolver
|
|
|
|
|
|
|
|
def index
|
|
|
|
flash[:notice] = 'Not implemented yet'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|