mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
* Bump min supported date to 20 years * Add basic onboarding * User onboarding * Complete onboarding flow * Cleanup, add user profile update test
19 lines
233 B
Ruby
19 lines
233 B
Ruby
class OnboardingsController < ApplicationController
|
|
layout "application"
|
|
|
|
before_action :set_user
|
|
|
|
def show
|
|
end
|
|
|
|
def profile
|
|
end
|
|
|
|
def preferences
|
|
end
|
|
|
|
private
|
|
def set_user
|
|
@user = Current.user
|
|
end
|
|
end
|