clarion/app/controllers/management/personal_profiles_controlle...

78 lines
1.6 KiB
Ruby
Raw Normal View History

2015-07-28 15:43:19 +03:00
module Management
# TODO (2015-07-28) How to create a new profile for a particular profile if given a user? What would be the interface?
class PersonalProfilesController < ManagementController
def index
@conference = find_conference
@profiles = @conference.participant_profiles
end
def toggle_admin
@conference = find_conference
@user = find_profile.user
@user.toggle_admin!
redirect_to :back
end
def show
@conference = find_conference
@profile = find_profile
@user = @profile.user
if not @profile
flash[:error] = "No profile, needs to be created"
redirect_to action: :edit
end
end
def edit
@conference = find_conference
@profile = find_profile
@user = @profile.user
end
def update
@conference = find_conference
@profile = find_profile
if @profile.update_attributes(profile_params)
redirect_to [:management, @conference, @profile]
else
render action: 'edit'
end
end
def destroy
@profile = find_profile
@profile.destroy
redirect_to action: :index
end
private
def find_profile
PersonalProfile.find(params[:id])
end
def find_conference
Conference.find(params[:conference_id])
end
def profile_params
params.require(:personal_profile).permit(
:picture,
:first_name,
:last_name,
:mobile_phone,
:biography,
:organisation,
:public_email,
:github,
:twitter,
user_attributes: [:id, :email]
)
end
end
end