6 lines
106 B
Ruby
6 lines
106 B
Ruby
|
class WelcomeController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
def index
|
||
|
|
||
|
end
|
||
|
end
|