## 概要 [Task3306: ライセンス引き戻し完了通知 [U-109] の実装](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3306) - ライセンス引き戻し完了のメール送信機能を追加しました。 - テストでメール送信しないようSendGridのメソッドを上書きする処理を追加しました。 ## レビューポイント - テンプレートの適用内容に不自然な点はないか - アカウントのFromとToとCCに関わる部分で認識違いはないか - `orderedAccountId` という引数には注文したアカウント=下位階層のアカウントが入るという理解であっているか等 ## UIの変更 - なし ## 動作確認状況 - npm run testは通過
39 lines
998 B
JSON
39 lines
998 B
JSON
{
|
|
"todo-tree.general.tags": ["TODO", "FIXME", "DEBUG", "XXX"],
|
|
"todo-tree.highlights.customHighlight": {
|
|
"TODO": {
|
|
"foreground": "white",
|
|
"background": "#ffa500",
|
|
"iconColour": "green"
|
|
},
|
|
"FIXME": {
|
|
"foreground": "white",
|
|
"background": "#ff69b4",
|
|
"iconColour": "yellow"
|
|
},
|
|
"DEBUG": {
|
|
"foreground": "white",
|
|
"background": "#a52a2a",
|
|
"icon": "bug",
|
|
"iconColour": "green"
|
|
},
|
|
"XXX": {
|
|
"foreground": "white",
|
|
"background": "#ff6347",
|
|
"icon": "eye-closed",
|
|
"iconColour": "red"
|
|
}
|
|
},
|
|
"debug.javascript.usePreview": false,
|
|
"editor.copyWithSyntaxHighlighting": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.fixAll.stylelint": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.formatOnType": true,
|
|
"prettier.disableLanguages": ["markdown"]
|
|
}
|