Remove options for appoint as admin / mod, and transfer site for (#1065)

non-federated users. #647
pull/1066/head
Dessalines 2020-08-07 13:50:07 -04:00 committed by GitHub
parent ddefc06fbc
commit 1d8183fe5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 35 deletions

View File

@ -475,6 +475,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
</button> </button>
))} ))}
{!node.comment.banned_from_community && {!node.comment.banned_from_community &&
node.comment.creator_local &&
(!this.state.showConfirmAppointAsMod ? ( (!this.state.showConfirmAppointAsMod ? (
<button <button
class="btn btn-link btn-animate text-muted" class="btn btn-link btn-animate text-muted"
@ -517,6 +518,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
{/* Community creators and admins can transfer community to another mod */} {/* Community creators and admins can transfer community to another mod */}
{(this.amCommunityCreator || this.canAdmin) && {(this.amCommunityCreator || this.canAdmin) &&
this.isMod && this.isMod &&
node.comment.creator_local &&
(!this.state.showConfirmTransferCommunity ? ( (!this.state.showConfirmTransferCommunity ? (
<button <button
class="btn btn-link btn-animate text-muted" class="btn btn-link btn-animate text-muted"
@ -579,6 +581,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
</button> </button>
))} ))}
{!node.comment.banned && {!node.comment.banned &&
node.comment.creator_local &&
(!this.state.showConfirmAppointAsAdmin ? ( (!this.state.showConfirmAppointAsAdmin ? (
<button <button
class="btn btn-link btn-animate text-muted" class="btn btn-link btn-animate text-muted"
@ -621,6 +624,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
{/* Site Creator can transfer to another admin */} {/* Site Creator can transfer to another admin */}
{this.amSiteCreator && {this.amSiteCreator &&
this.isAdmin && this.isAdmin &&
node.comment.creator_local &&
(!this.state.showConfirmTransferSite ? ( (!this.state.showConfirmTransferSite ? (
<button <button
class="btn btn-link btn-animate text-muted" class="btn btn-link btn-animate text-muted"

View File

@ -757,7 +757,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
)} )}
</li> </li>
)} )}
{!post.banned_from_community && ( {!post.banned_from_community && post.creator_local && (
<li className="list-inline-item"> <li className="list-inline-item">
<span <span
class="pointer" class="pointer"
@ -775,7 +775,9 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</> </>
)} )}
{/* Community creators and admins can transfer community to another mod */} {/* Community creators and admins can transfer community to another mod */}
{(this.amCommunityCreator || this.canAdmin) && this.isMod && ( {(this.amCommunityCreator || this.canAdmin) &&
this.isMod &&
post.creator_local && (
<li className="list-inline-item"> <li className="list-inline-item">
{!this.state.showConfirmTransferCommunity ? ( {!this.state.showConfirmTransferCommunity ? (
<span <span
@ -836,7 +838,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
)} )}
</li> </li>
)} )}
{!post.banned && ( {!post.banned && post.creator_local && (
<li className="list-inline-item"> <li className="list-inline-item">
<span <span
class="pointer" class="pointer"