* Remove :api_v1 feature flag * Reworking the auth configs throughout V1 + specs * Fix remaining v1 specs * Enhanced inline docs * deprecation warning update * Use headers variable for most v1 specs * Cherry pick spec changes * Fix specs * group let! statements - rubocop * Bring back ||= on api v1 authentication methods * Bump swagger/v1/api_v1.json
9 lines
185 B
Ruby
9 lines
185 B
Ruby
module Api
|
|
module V1
|
|
class VideosController < ApiController
|
|
include Api::VideosController
|
|
|
|
before_action :set_cache_control_headers, only: %i[index]
|
|
end
|
|
end
|
|
end
|