mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 12:16:14 +00:00
12 lines
268 B
Ruby
12 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TermsOfServiceInterstitialController < ApplicationController
|
|
vary_by 'Accept-Language'
|
|
|
|
def show
|
|
@terms_of_service = TermsOfService.published.first
|
|
|
|
render 'terms_of_service_interstitial/show', layout: 'auth'
|
|
end
|
|
end
|