akkounts/app/controllers/settings/profile_controller.rb
Râu Cao 6ad02e69a2
WIP Profile settings page
Show the user's user address, and provide a button for copying it to the
clipboard
2023-01-10 14:13:26 +08:00

12 lines
125 B
Ruby

class Settings::ProfileController < SettingsController
def index
@user = current_user
end
def update
end
end