mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
9acdb166e8
* Fix #795, fix #704, fix #835 - 2FA requires confirmation to be enabled TOTP secret is not shown again after 2FA is enabled * Clean up
8 lines
121 B
Ruby
8 lines
121 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Form::TwoFactorConfirmation
|
|
include ActiveModel::Model
|
|
|
|
attr_accessor :code
|
|
end
|