Skip FBOS version check on `show` endpoint

pull/791/head
Rick Carlino 2018-04-15 14:06:02 -05:00
parent a5f28fc278
commit f804253449
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module Api
class TokensController < Api::AbstractController
skip_before_action :authenticate_user!, only: :create
skip_before_action :check_fbos_version, only: :create
skip_before_action :check_fbos_version, only: [:create, :show]
before_action :clean_out_old_tokens
CREDS = Auth::CreateTokenFromCredentials