[Sprint/GiddyGiraffe] (feat): ability for channels to self-declare nsfw
closes minds#486
depends on engine!202
0/3 discussions resolved
- Last updated by Marcelo Rivera
67 67 is_mature?: boolean; 68 68 mature_lock?: boolean; 69 69 tags?: Array<string>; 70 nsfw: Array<number>; - Maintainer
<3
changed this line in version 2 of the diff
approved this merge request
- Owner
@eiennohi can we check failing tests?
added 1 commit
- 6fec3245 - (feat): ability for channels to self-declare nsfw
mentioned in merge request engine!202
changed the description
approved this merge request
- Last updated by Mark Harding
407 m-nsfw-selector { 408 display: inline-block; 409 border-radius: 24px; 410 padding: 3px 16px; 411 @include m-theme(){ 412 border: 1px solid themed($m-grey-100); 413 } 414 415 .m-nsfwSelector__label { 416 & > m-tooltip i { 417 display: none; 418 } 419 420 > span { 421 font-size: 13px; 422 padding-left: 4px; - Owner
- Owner
Also, cursor should be pointer on hover
71 71 </div> 72 72 </div> 73 73 74 <div class="m-channel-bio-editor m-channel-nsfw-editor" *ngIf="editing && isOwner()"> 75 <div class="m-channel-bio-input"> 76 <i class="material-icons mdl-color-text--blue-grey-300">explicit</i> 77 <m-nsfw-selector 78 [selected]="user.nsfw" - Owner