polyglot/app/controllers/pages_controller.rb

13 lines
163 B
Ruby
Raw Normal View History

class PagesController < ApplicationController
2018-08-28 13:46:15 +00:00
# skip_before_action :authenticate_user!, only: [:call]
2018-08-28 12:48:32 +00:00
def call
end
2018-08-28 16:18:58 +00:00
def index
end
2018-08-28 16:21:12 +00:00
2018-08-28 14:00:54 +00:00
def home
end
end