creating default organization while creating a conference
This commit is contained in:
parent
3fb316482c
commit
cce3ff7aea
3 changed files with 14 additions and 4 deletions
|
|
@ -72,11 +72,19 @@ module Admin
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@conference = Conference.new
|
@conference = Conference.new
|
||||||
|
@organizations = {}
|
||||||
|
Organization.all.each do |organization|
|
||||||
|
@organizations.store(organization.name, organization.id) if can? :create, Conference.new(organization: organization)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@conference = Conference.new(conference_params)
|
conference_params_copy = conference_params
|
||||||
|
if ENV['ORGANIZATIONS_ENABLED'] != 'true'
|
||||||
|
org = Organization.exists?(name: 'default') ? Organization.find_by(name: 'default') : Organization.create(name: 'default')
|
||||||
|
conference_params_copy[:organization_id] = org.id
|
||||||
|
end
|
||||||
|
@conference = Conference.new(conference_params_copy)
|
||||||
if @conference.save
|
if @conference.save
|
||||||
# user that creates the conference becomes organizer of that conference
|
# user that creates the conference becomes organizer of that conference
|
||||||
current_user.add_role :organizer, @conference
|
current_user.add_role :organizer, @conference
|
||||||
|
|
@ -211,7 +219,7 @@ module Admin
|
||||||
:vpositions_attributes, :use_volunteers, :color,
|
:vpositions_attributes, :use_volunteers, :color,
|
||||||
:sponsorship_levels_attributes, :sponsors_attributes,
|
:sponsorship_levels_attributes, :sponsors_attributes,
|
||||||
:targets, :targets_attributes,
|
:targets, :targets_attributes,
|
||||||
:campaigns, :campaigns_attributes, :registration_limit)
|
:campaigns, :campaigns_attributes, :registration_limit, :organization_id)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,8 @@
|
||||||
input_html: { required: 'required' }
|
input_html: { required: 'required' }
|
||||||
= f.input :short_title, hint: "A short and unique handle for your conference, using only letters, numbers, underscores, and dashes. This will be used to identify your conference in URLs etc. Example: 'froscon2011'",
|
= f.input :short_title, hint: "A short and unique handle for your conference, using only letters, numbers, underscores, and dashes. This will be used to identify your conference in URLs etc. Example: 'froscon2011'",
|
||||||
input_html: { required: 'required', pattern: '[a-zA-Z0-9_-]+', title: 'Only letters, numbers, underscores, and dashes.' }, prepend: conferences_url + '/'
|
input_html: { required: 'required', pattern: '[a-zA-Z0-9_-]+', title: 'Only letters, numbers, underscores, and dashes.' }, prepend: conferences_url + '/'
|
||||||
|
- if ENV['ORGANIZATIONS_ENABLED'] == 'true'
|
||||||
|
= f.input :organization, as: :select, collection: @organizations
|
||||||
= f.inputs 'Scheduling' do
|
= f.inputs 'Scheduling' do
|
||||||
= f.input :timezone, as: :time_zone, default: Time.zone.name, hint: 'Please select in what time zone your conference will take place.'
|
= f.input :timezone, as: :time_zone, default: Time.zone.name, hint: 'Please select in what time zone your conference will take place.'
|
||||||
= f.input :start_date, as: :string, input_html: { id: 'conference-start-datepicker', required: 'required' }
|
= f.input :start_date, as: :string, input_html: { id: 'conference-start-datepicker', required: 'required' }
|
||||||
|
|
|
||||||
|
|
@ -1630,7 +1630,7 @@ describe Conference do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'after_create' do
|
describe 'after_create' do
|
||||||
let(:conference) { Conference.new(title: 'ABC', short_title: 'XYZ', start_date: Date.today, end_date: Date.today + 10, timezone: 'GMT') }
|
let(:conference) { create(:conference) }
|
||||||
|
|
||||||
it 'calls back to create free ticket' do
|
it 'calls back to create free ticket' do
|
||||||
conference.save
|
conference.save
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue