summaryrefslogtreecommitdiff
path: root/app/controllers/v1/smtp_certs_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/v1/smtp_certs_controller.rb')
-rw-r--r--app/controllers/v1/smtp_certs_controller.rb4
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