-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1185 from koedame/release/v2.1.1
Release/v2.1.1
- Loading branch information
Showing
11 changed files
with
955 additions
and
703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
- 📌 お知らせ表示 | ||
- 🔐 パスワード保存機能 | ||
- 🔍 メンバー検索機能 | ||
- 📝 プロフィール編集機能 | ||
|
||
## 対応ブラウザ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { SYNCROOM } from '../types/syncroom'; | ||
|
||
// プリセットアイコン | ||
export const PresetIconRepository = { | ||
// プリセット一覧 | ||
index(): SYNCROOM.IconInfoType[] { | ||
return [ | ||
{ | ||
preset: '0', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '1', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '2', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '3', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '4', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '5', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '6', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '7', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '8', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '9', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '10', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '11', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '12', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
{ | ||
preset: '13', | ||
type: 'preset', | ||
url: '', | ||
}, | ||
]; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.