فهرست منبع

Merge pull request #3378 from weseek/fix/5067-5068-restore-changeSesOption-function

Fix/5067 5068 restore change ses option function
Yuki Takei 5 سال پیش
والد
کامیت
87403918e9
2فایلهای تغییر یافته به همراه16 افزوده شده و 0 حذف شده
  1. 2 0
      CHANGES.md
  2. 14 0
      src/client/js/services/AdminAppContainer.js

+ 2 - 0
CHANGES.md

@@ -2,6 +2,8 @@
 
 ## v4.2.8-RC
 
+* Fix: Fixed not being able to update ses settings
+    * Introduced by v4.2.0
 * Fix: Fixed the display of updtedAt and createdAt being reversed
 * Improvement: Improved page control performance with stream and bulk
     * rename, duplicate, delete, deleteCompletely, revrtDeleted

+ 14 - 0
src/client/js/services/AdminAppContainer.js

@@ -201,6 +201,20 @@ export default class AdminAppContainer extends Container {
     this.setState({ smtpPassword });
   }
 
+  /**
+   * Change sesAccessKeyId
+   */
+  changeSesAccessKeyId(sesAccessKeyId) {
+    this.setState({ sesAccessKeyId });
+  }
+
+  /**
+   * Change sesSecretAccessKey
+   */
+  changeSesSecretAccessKey(sesSecretAccessKey) {
+    this.setState({ sesSecretAccessKey });
+  }
+
   /**
    * Change s3Region
    */