Allow to mute my own boosts
This commit is contained in:
parent
fec0ed7966
commit
46864916d9
|
@ -19,12 +19,6 @@ export const meta = {
|
|||
id: "6fef56f3-e765-4957-88e5-c6f65329b8a5",
|
||||
},
|
||||
|
||||
muteeIsYourself: {
|
||||
message: "Mutee is yourself.",
|
||||
code: "MUTEE_IS_YOURSELF",
|
||||
id: "a4619cb2-5f23-484b-9301-94c903074e10",
|
||||
},
|
||||
|
||||
alreadyMuting: {
|
||||
message: "You are already muting that user.",
|
||||
code: "ALREADY_MUTING",
|
||||
|
@ -45,11 +39,6 @@ export const paramDef = {
|
|||
export default define(meta, paramDef, async (ps, user) => {
|
||||
const muter = user;
|
||||
|
||||
// 自分自身
|
||||
if (user.id === ps.userId) {
|
||||
throw new ApiError(meta.errors.muteeIsYourself);
|
||||
}
|
||||
|
||||
// Get mutee
|
||||
const mutee = await getUser(ps.userId).catch((e) => {
|
||||
if (e.id === "15348ddd-432d-49c2-8a5a-8069753becff")
|
||||
|
|
|
@ -17,12 +17,6 @@ export const meta = {
|
|||
id: "b851d00b-8ab1-4a56-8b1b-e24187cb48ef",
|
||||
},
|
||||
|
||||
muteeIsYourself: {
|
||||
message: "Mutee is yourself.",
|
||||
code: "MUTEE_IS_YOURSELF",
|
||||
id: "f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9",
|
||||
},
|
||||
|
||||
notMuting: {
|
||||
message: "You are not muting that user.",
|
||||
code: "NOT_MUTING",
|
||||
|
@ -43,11 +37,6 @@ export const paramDef = {
|
|||
export default define(meta, paramDef, async (ps, user) => {
|
||||
const muter = user;
|
||||
|
||||
// Check if the mutee is yourself
|
||||
if (user.id === ps.userId) {
|
||||
throw new ApiError(meta.errors.muteeIsYourself);
|
||||
}
|
||||
|
||||
// Get mutee
|
||||
const mutee = await getUser(ps.userId).catch((e) => {
|
||||
if (e.id === "15348ddd-432d-49c2-8a5a-8069753becff")
|
||||
|
|
|
@ -267,11 +267,6 @@ export function getUserMenu(user, router: Router = mainRouter) {
|
|||
action: inviteGroup,
|
||||
}
|
||||
: undefined,
|
||||
] as any;
|
||||
|
||||
if ($i && meId !== user.id) {
|
||||
menu = menu.concat([
|
||||
null,
|
||||
{
|
||||
icon: user.isRenoteMuted
|
||||
? "ph-eye ph-bold ph-lg"
|
||||
|
@ -279,6 +274,11 @@ export function getUserMenu(user, router: Router = mainRouter) {
|
|||
text: user.isRenoteMuted ? i18n.ts.renoteUnmute : i18n.ts.renoteMute,
|
||||
action: toggleRenoteMute,
|
||||
},
|
||||
] as any;
|
||||
|
||||
if ($i && meId !== user.id) {
|
||||
menu = menu.concat([
|
||||
null,
|
||||
{
|
||||
icon: user.isMuted
|
||||
? "ph-eye ph-bold ph-lg"
|
||||
|
|
Loading…
Reference in New Issue