Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

メールテンプレート変更後にキャッシュを削除する #4594

Closed
wants to merge 1 commit into from

Conversation

okazy
Copy link
Contributor

@okazy okazy commented Jun 26, 2020

概要(Overview・Refs Issue)

close #4560

方針(Policy)

実装に関する補足(Appendix)

ページ管理での編集処理と同様にキャッシュを削除する処理を追加。

テスト(Test)

prod モードでメールテンプレート編集後に、手動でキャッシュ削除せずメールを送信して変更が反映されていることを確認しました。(出荷完了メールで確認)

相談(Discussion)

マイナーバージョン互換性保持のための制限事項チェックリスト

  • 既存機能の仕様変更
  • フックポイントの呼び出しタイミングの変更
  • フックポイントのパラメータの削除・データ型の変更
  • twigファイルに渡しているパラメータの削除・データ型の変更
  • Serviceクラスの公開関数の、引数の削除・データ型の変更
  • 入出力ファイル(CSVなど)のフォーマット変更

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか

@@ -128,6 +129,10 @@ public function index(Request $request, MailTemplate $Mail = null, Environment $

$this->addSuccess('admin.common.save_complete', 'admin');

// キャッシュの削除
$cacheUtil->clearTwigCache();
$cacheUtil->clearDoctrineCache();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doctrineキャッシュ削除は不要なのでは?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kiy0taka コメントありがとうございます!
メールのタイトルはDBに保存しているので念のため削除しておいた方がいいかと思いますがいかがでしょうか?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DoctrineCacheの削除は不要そうですね。

@okazy
Copy link
Contributor Author

okazy commented Jun 26, 2020

すみません、以下のプルリクで近い内容のプルリクをいただいていました。
#4499

まずはこちらのプルリクを取り込んでいただければと思います。

@okazy
Copy link
Contributor Author

okazy commented Jun 26, 2020

DoctrineCacheの削除は不要そうなので #4499 の修正で良いと思います。
こちらのプルリクはクローズします。

@okazy okazy closed this Jun 26, 2020
@okazy okazy modified the milestones: 4.0.x, Not release Jun 26, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
improvement 機能改善
Projects
None yet
Development

Successfully merging this pull request may close these issues.

設定 -> 店舗設定 -> メール設定 でテンプレート更新後にキャッシュを再生成する
2 participants