Sha256: 37e84c9e065fbeb4a8270743412e9618c57c4ccb0d2401b5f4056abf29bbb867
Contents?: true
Size: 492 Bytes
Versions: 20
Compression:
Stored size: 492 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 routes do resource :authorizations, only: [:new, :create, :edit, :update], as: :authorization root to: "authorizations#new" end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems