8 lines
162 B
Ruby
8 lines
162 B
Ruby
class PagesController < ApplicationController
|
|
skip_before_action :authenticate_user_or_validate_api_token, only: [:root]
|
|
|
|
def root
|
|
render :root
|
|
end
|
|
end
|