mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-01 02:30:38 -05:00
33 lines
879 B
Ruby
33 lines
879 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class ContactsController < Admin::BaseController
|
|
load_and_authorize_resource :conference, find_by: :short_title
|
|
load_and_authorize_resource through: :conference, singleton: true
|
|
|
|
# GET /:conference/contact
|
|
def show; end
|
|
|
|
# GET /:conference/contact/edit
|
|
def edit; end
|
|
|
|
# PATCH/PUT /:conference/contact
|
|
def update
|
|
if @contact.update(contact_params)
|
|
redirect_to edit_admin_conference_contact_path, notice: 'Contact details were successfully updated.'
|
|
else
|
|
render :edit
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
# Only allow a trusted parameter "white list" through.
|
|
def contact_params
|
|
params.require(:contact).permit(
|
|
:social_tag, :email, :facebook, :googleplus, :twitter, :instagram,
|
|
:mastodon, :public, :sponsor_email, :youtube, :blog)
|
|
end
|
|
end
|
|
end
|