mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
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
|