* Extract onboarding into it's own controller * Pluralize controller * Create Onboarding spec
5 lines
109 B
Ruby
5 lines
109 B
Ruby
class OnboardingsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def show; end
|
|
end
|