mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 14:11:10 +00:00
modify admin/conference_controller_spec and not authorized error messages
This commit is contained in:
parent
aa3df0243e
commit
ad3d6f2f95
8 changed files with 120 additions and 105 deletions
|
|
@ -72,11 +72,14 @@ module Admin
|
|||
|
||||
def 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
|
||||
|
||||
def create
|
||||
@conference = Conference.new(conference_params)
|
||||
@conference.organization = Organization.find_or_create_by(name: 'organization')
|
||||
if @conference.save
|
||||
# user that creates the conference becomes organizer of that conference
|
||||
current_user.add_role :organizer, @conference
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue