wco_email 0.1.1.1 → 0.1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a1985e799658f10652a2d34d6167693efccf4d9bca51c3305b32a40fc85976d
4
- data.tar.gz: 67de1b81f2566d8bb44c4d280acfc3419b90a394192ff93e333df23efc356c2c
3
+ metadata.gz: 154abcf8ea105d1ed36ba09b362df1e18b305f9c711394f16c6a48749fda8796
4
+ data.tar.gz: 60141e3205cfe7ffcf5489afa0f8c4f6b2d562520da56190b2bbfd16b11cfcc5
5
5
  SHA512:
6
- metadata.gz: b47cc3f76284603bd3fff8234e278bdd19e428bd65c2e78fdabd472ef88ba04ed6de94d5e79d5c0d260082dc8f29e902de758198ea45177e8c6c98cc7359bb73
7
- data.tar.gz: 1f5c5759e881be8811d1ae65660c0dbdf01e73cdeb123ac31fed4471a273c5937cdf17e065eb71db10a1b47f532f98832b475f402526b947ef619d91d6f06a99
6
+ metadata.gz: ec0868b904e2aeade137d012d4221ae01f3e873e58b065879f66fbb0c5365af3324f16a3763f05e648d626f90e73132de380743eaa431c1ddbacc027973c81e1
7
+ data.tar.gz: 9ce00adac76e64eae799a3d433b427f21c03fee0a6c7e861bbe87d46bcf98e7f11b204eae96071da7b8c5ca0b4dfe025f7b894124e1c1065e001a46ef2d6c921
@@ -0,0 +1,29 @@
1
+
2
+ class WcoEmail::ApiController < ActionController::Base
3
+
4
+ before_action :check_credentials
5
+ skip_before_action :verify_authenticity_token
6
+
7
+ def create_email_message
8
+ stub = WcoEmail::MessageStub.create!({
9
+ bucket: params[:bucket],
10
+ object_key: params[:object_key],
11
+ })
12
+
13
+ WcoEmail::MessageIntakeJob.perform_async( stub.id.to_s )
14
+ render status: :ok, json: { status: :ok }
15
+ end
16
+
17
+ ##
18
+ ## private
19
+ ##
20
+ private
21
+
22
+ def check_credentials
23
+ if params[:secret] != AWS_SES_LAMBDA_SECRET
24
+ render status: 400, json: { status: 400 }
25
+ return
26
+ end
27
+ end
28
+
29
+ end
@@ -31,4 +31,4 @@
31
31
 
32
32
  - else
33
33
  -# = link_to 'i-src', context_iframe_path(@ctx), target: :_blank
34
- %iframe.h-500px{ src: email_context_iframe_path(@ctx), width: '100%', height: '100%' }
34
+ %iframe.h-500px{ src: context_iframe_path(@ctx), width: '100%', height: '100%' }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wco_email
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1.1
4
+ version: 0.1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Pudeyev
@@ -300,6 +300,7 @@ files:
300
300
  - app/assets/stylesheets/wco_email/contexts.scss
301
301
  - app/assets/stylesheets/wco_email/conversations.scss
302
302
  - app/assets/stylesheets/wco_email/tags.scss
303
+ - app/controllers/wco_email/api_controller.rb
303
304
  - app/controllers/wco_email/application_controller.rb
304
305
  - app/controllers/wco_email/contexts_controller.rb
305
306
  - app/controllers/wco_email/conversations_controller.rb