Sha256: 6483a3dee655e7cb11a3431ba0c96725b5d337ec14ce1d93c727fcbf129badf2
Contents?: true
Size: 583 Bytes
Versions: 59
Compression:
Stored size: 583 Bytes
Contents
# frozen_string_literal: true module Decidim module Verifications module PostalLetter # This is an engine that performs an example user authorization. class Engine < ::Rails::Engine isolate_namespace Decidim::Verifications::PostalLetter paths["db/migrate"] = nil paths["lib/tasks"] = nil routes do resource :authorizations, only: [:new, :create, :edit, :update], as: :authorization do get :renew, on: :collection end root to: "authorizations#new" end end end end end
Version data entries
59 entries across 59 versions & 1 rubygems