mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 14:46:05 +10:00
# Conflicts: # app/controllers/groups/application_controller.rb # app/services/test_hook_service.rb # app/views/admin/groups/show.html.haml # app/views/groups/_settings_nav.html.haml # app/views/groups/show.html.haml # app/views/layouts/_head.html.haml # app/views/projects/_settings_nav.html.haml # db/schema.rb # features/project/project.feature # features/steps/project/project.rb
26 lines
597 B
Ruby
26 lines
597 B
Ruby
class UnsubscribesController < ApplicationController
|
|
skip_before_action :authenticate_user!,
|
|
:reject_blocked, :set_current_user_for_observers,
|
|
:add_abilities
|
|
|
|
def show
|
|
@user = get_user
|
|
end
|
|
|
|
def create
|
|
@user = get_user
|
|
if @user
|
|
@user.admin_unsubscribe!
|
|
Notify.send_unsubscribed_notification(@user).deliver
|
|
end
|
|
redirect_to new_user_session_path, notice: 'You have been unsubscribed'
|
|
end
|
|
|
|
protected
|
|
|
|
def get_user
|
|
@email = Base64.urlsafe_decode64(params[:email])
|
|
User.where(email: @email).first
|
|
end
|
|
end
|