mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-05 20:47:48 -05:00
53 lines
1.5 KiB
Ruby
53 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class VenuesController < Admin::BaseController
|
|
load_and_authorize_resource :conference, find_by: :short_title
|
|
load_and_authorize_resource :venue, through: :conference, singleton: true
|
|
|
|
def show; end
|
|
|
|
def new
|
|
@venue = @conference.build_venue
|
|
end
|
|
|
|
def edit; end
|
|
|
|
def create
|
|
@venue = @conference.build_venue(venue_params)
|
|
|
|
if @venue.save
|
|
redirect_to admin_conference_venue_path,
|
|
notice: 'Venue was successfully created.'
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def update
|
|
if @venue.update(venue_params)
|
|
redirect_to admin_conference_venue_path(conference_id: @conference.short_title),
|
|
notice: 'Venue was successfully updated.'
|
|
else
|
|
flash.now[:error] = "Update venue failed: #{@venue.errors.full_messages.join('. ')}."
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
if @venue.destroy
|
|
redirect_to admin_conference_venue_path, notice: 'Venue was successfully deleted.'
|
|
else
|
|
redirect_to admin_conference_venue_path, error: 'An error prohibited this Venue from being destroyed: '\
|
|
"#{@venue.errors.full_messages.join('. ')}."
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def venue_params
|
|
params.require(:venue).permit(:name, :street, :postalcode, :city, :country, :longitude, :latitude, :description, :website, :picture, :picture_cache, :lodgings_attributes, :conference_id)
|
|
end
|
|
end
|
|
end
|