mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Bump min supported date to 20 years * Add basic onboarding * User onboarding * Complete onboarding flow * Cleanup, add user profile update test
20 lines
233 B
Ruby
20 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
|