2023-06-12 12:22:46 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MailSubscriptionsController < ApplicationController
|
|
|
|
layout 'auth'
|
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
|
|
|
before_action :set_user
|
|
|
|
before_action :set_type
|
|
|
|
|
2023-08-01 17:34:40 +00:00
|
|
|
protect_from_forgery with: :null_session
|
|
|
|
|
2023-06-12 12:22:46 +00:00
|
|
|
def show; end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@user.settings[email_type_from_param] = false
|
|
|
|
@user.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_user
|
|
|
|
@user = GlobalID::Locator.locate_signed(params[:token], for: 'unsubscribe')
|
2023-08-01 17:34:40 +00:00
|
|
|
not_found unless @user
|
2023-06-12 12:22:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_type
|
|
|
|
@type = email_type_from_param
|
|
|
|
end
|
|
|
|
|
|
|
|
def email_type_from_param
|
|
|
|
case params[:type]
|
|
|
|
when 'follow', 'reblog', 'favourite', 'mention', 'follow_request'
|
|
|
|
"notification_emails.#{params[:type]}"
|
|
|
|
else
|
2023-08-01 17:34:40 +00:00
|
|
|
not_found
|
2023-06-12 12:22:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|