# Decidim::Verifications Decidim offers several methods for allowing participants to get authorization to perform certain privileged actions. This gem implements several of those methods and also offers a way for installation to implement their custom verification methods. ## Introduction Each decidim instance is in full control of its authorizations, and can customize: * The different methods to be used by users to get verified. For example, through a census, by uploading their identity documents, or by receiving a verification home at their address. * The different actions in decidim that require authorization, and which authorization method they require. For example, a decidim instance might choose to require census authorization to create proposals, but a fully verified address via a verification code sent by postal mail for voting on proposals. ## Types of authorization methods Decidim implements two type of authorization methods: * _Form authorizations_. When your verification method is simple enough, you can use a `Rectify::Form` to implement it. "Simple" here means that the authorization can be granted with the submission of a single form. For example, to validate a user against a census API you will need a form with some fields that your users will use to authenticate against a census (for example, an ID and a Postal Code). You'll implement this with a form class. See the documentation for the [parent class][authorization handler base class] or have a look at a [live example][live authorization handler example] in decidim-barcelona. To register your handler, use ```ruby # config/initializers/decidim.rb Decidim::Verifications.register_workflow(:census) do |workflow| workflow.form = "