Files
Jan Sandbrink 4bf16e5215 Freeze string literals in two more modules
Diff was achieved by running

    rubocop -A --only Style/FrozenStringLiteralComment,Layout/EmptyLineAfterMagicComment,Style/RedundantFreeze

for the module folders of the affected modules.
This change is part of the effort to slowly roll out frozen
string literals across the entire application.
2025-06-30 09:51:24 +02:00

15 lines
256 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
scope :admin do
namespace :saml do
resources :providers do
member do
post :import_metadata
get :confirm_destroy
end
end
end
end
end