Files
nairobi/app/components/management/account/edit_password_manually_component.rb
Javi Martín 02aac86b04 Move edit password manually view to a component
We're restructuring the CSS of the admin stylesheet, and there was a
rule that is only applied to this component.
2025-01-08 16:20:37 +01:00

8 lines
151 B
Ruby

class Management::Account::EditPasswordManuallyComponent < ApplicationComponent
attr_reader :user
def initialize(user)
@user = user
end
end