polyglot/app/controllers/pages_controller.rb

10 lines
144 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 14:00:54 +00:00
def home
end
end