8 lines
129 B
Ruby
8 lines
129 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SettingsController < ApplicationController
|
|
skip_authorization_check
|
|
|
|
def index; end
|
|
end
|