2018-08-27 14:37:06 +00:00
|
|
|
class PagesController < ApplicationController
|
2018-08-28 12:48:32 +00:00
|
|
|
skip_before_action :authenticate_user!, only: [:call]
|
2018-08-27 14:37:06 +00:00
|
|
|
|
2018-08-28 12:48:32 +00:00
|
|
|
def call
|
2018-08-27 14:37:06 +00:00
|
|
|
end
|
|
|
|
end
|