-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
プロフィールにその人が作ったPlayの一覧出せるように #11445
プロフィールにその人が作ったPlayの一覧出せるように #11445
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #11445 +/- ##
===========================================
+ Coverage 78.64% 78.77% +0.12%
===========================================
Files 922 174 -748
Lines 97391 22745 -74646
Branches 7743 520 -7223
===========================================
- Hits 76596 17918 -58678
+ Misses 20795 4827 -15968 |
できればplayの非表示設定が出来るようになると大変助かります。 |
packages/backend/src/server/api/endpoints/flash/show.ts が変更されているのは何故でしょう? |
私の編集間違いです |
* private ... プロフィールには表示しない | ||
*/ | ||
@Column('enum', { enum: ['public', 'private'] }) | ||
public visibility: 'public' | 'private'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こっちも更新する必要がありますね
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました。
public visibility: 'public' | 'private'; | |
@Column('varchar', { | |
default: 'public', | |
}) | |
public visibility: 'public' | 'private'; |
👍🏻 |
ありがとうございます |
What
プロフィールのタブにPlayタブを追加して、その人が作成したPlay一覧を表示できるようにしました。

Why
その人が作ったPlay一覧をページの表示できなかったので作成しました。
Checklist