diff options
author | Azul <azul@leap.se> | 2014-05-26 09:31:36 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-05-26 09:31:36 +0200 |
commit | 00d5adc90ccadc7f4a2a0d54a5a31a1ad02f05be (patch) | |
tree | 2e9655ed7597c3a9d7c520d04f5991d62e7b345b /app/controllers/v1/smtp_certs_controller.rb | |
parent | 3a84578cf33685800c9216cfb4da12ea1fb0032f (diff) |
change from GET to POST for certs
We create them. let's reflect that in the verb.
Diffstat (limited to 'app/controllers/v1/smtp_certs_controller.rb')
-rw-r--r-- | app/controllers/v1/smtp_certs_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/v1/smtp_certs_controller.rb b/app/controllers/v1/smtp_certs_controller.rb index fcc00b8..377a49c 100644 --- a/app/controllers/v1/smtp_certs_controller.rb +++ b/app/controllers/v1/smtp_certs_controller.rb @@ -4,8 +4,8 @@ class V1::SmtpCertsController < ApplicationController before_filter :require_email_account before_filter :fetch_identity - # GET /1/smtp_cert - def show + # POST /1/smtp_cert + def create @cert = ClientCertificate.new prefix: current_user.email_address @identity.register_cert(@cert) @identity.save |