add is_keynote attribute to event_types

This commit is contained in:
Stella 2014-12-07 16:52:10 +02:00 committed by Stella Rouzi
parent a8b0c28cee
commit c787190571
9 changed files with 29 additions and 13 deletions

View file

@ -49,7 +49,10 @@ module Admin
private
def event_type_params
params[:event_type]
params.require(:event_type).permit(:title, :length,
:minimum_abstract_length,
:maximum_abstract_length,
:color, :is_keynote)
end
end
end