mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-08-07 09:49:13 +00:00
13 lines
163 B
Ruby
13 lines
163 B
Ruby
class PagesController < ApplicationController
|
|
# skip_before_action :authenticate_user!, only: [:call]
|
|
|
|
def call
|
|
end
|
|
|
|
def index
|
|
end
|
|
|
|
def home
|
|
end
|
|
end
|