mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
9 lines
251 B
Ruby
9 lines
251 B
Ruby
class EmailsController < ApplicationController
|
|
def one_click_unsubscribe
|
|
user = User.find_by(secure_code: params[:code])
|
|
|
|
user.update email_updates: false
|
|
render text: "You have been successfully unsubscribed from all emails."
|
|
end
|
|
end
|