mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
771c9d4ba8
Remove "active within last two weeks" exception for sign in token requirement Change admin reset password to lock access until the password is reset
15 lines
311 B
Ruby
15 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class ResetsController < BaseController
|
|
before_action :set_user
|
|
|
|
def create
|
|
authorize @user, :reset_password?
|
|
@user.reset_password!
|
|
log_action :reset_password, @user
|
|
redirect_to admin_account_path(@user.account_id)
|
|
end
|
|
end
|
|
end
|