Add tickets to registration segment

This commit is contained in:
Gopesh Tulsyan 2014-05-29 20:23:33 +05:30
parent abfb0884a1
commit e2fd1bbd69
10 changed files with 42 additions and 2 deletions

View file

@ -9,7 +9,8 @@ class Conference < ActiveRecord::Base
:questions_attributes, :question_ids, :answers_attributes, :answer_ids,
:difficulty_levels_attributes, :use_difficulty_levels,
:use_vpositions, :use_vdays, :vdays_attributes, :vpositions_attributes, :use_volunteers,
:media_id, :media_type, :color, :description, :registration_description
:media_id, :media_type, :color, :description,
:registration_description, :ticket_description
has_paper_trail

View file

@ -2,5 +2,5 @@ class SupporterLevel < ActiveRecord::Base
belongs_to :conference
has_many :supporter_registrations
attr_accessible :conference, :title, :url
attr_accessible :conference, :title, :url, :description, :ticket_price
end