agenda-libre-ruby/app/controllers/notes_controller.rb

13 lines
257 B
Ruby
Raw Normal View History

2014-02-18 09:28:04 +01:00
class NotesController < InheritedResources::Base
belongs_to :event
private
def begin_of_association_chain
@event = Event.unscoped.find params[:moderation_id]
end
def permitted_params
params.permit note: [:contents]
end
end