Add `strict` option while get trigger (#210)

* Add `strict` option while get trigger

* Fix bug

Co-authored-by: jiang.pengcheng <jiang.pengcheng@navercorp.com>
diff --git a/action/alarmWebAction.js b/action/alarmWebAction.js
index b6145f9..c6a787c 100644
--- a/action/alarmWebAction.js
+++ b/action/alarmWebAction.js
@@ -191,6 +191,11 @@
                         reason: doc.status.reason
                     }
                 };
+                var strict = true; // strict is default to true
+                if (doc.strict !== undefined) {
+                    strict = doc.strict;
+                }
+                body.config.strict = strict;
                 if (doc.date) {
                     body.config.date = doc.date;
                     body.config.deleteAfterFire = doc.deleteAfterFire;