%fa:mobile-alt%
@@ -386,6 +387,7 @@ root(isDark)
text-decoration underline
> .is-bot
+ > .is-cat
margin 0 0.5em 0 0
padding 1px 6px
font-size 12px
diff --git a/src/client/app/mobile/views/pages/settings/settings.profile.vue b/src/client/app/mobile/views/pages/settings/settings.profile.vue
index 260cccbae3..796beedf4f 100644
--- a/src/client/app/mobile/views/pages/settings/settings.profile.vue
+++ b/src/client/app/mobile/views/pages/settings/settings.profile.vue
@@ -50,7 +50,11 @@
md-content="%18n:!@uploading%"/>
- %i18n:@is-bot%
+ %i18n:@is-bot%
+
+
+
+ %i18n:@is-cat%
@@ -75,6 +79,8 @@ export default Vue.extend({
birthday: null,
avatarId: null,
bannerId: null,
+ isBot: false,
+ isCat: false,
saving: false,
uploading: false
};
@@ -88,15 +94,11 @@ export default Vue.extend({
this.birthday = (this as any).os.i.profile.birthday;
this.avatarId = (this as any).os.i.avatarId;
this.bannerId = (this as any).os.i.bannerId;
+ this.isBot = (this as any).os.i.isBot;
+ this.isCat = (this as any).os.i.isCat;
},
methods: {
- onChangeIsBot() {
- (this as any).api('i/update', {
- isBot: (this as any).os.i.isBot
- });
- },
-
onAvatarChange([file]) {
this.uploading = true;
@@ -150,7 +152,9 @@ export default Vue.extend({
description: this.description || null,
birthday: this.birthday || null,
avatarId: this.avatarId,
- bannerId: this.bannerId
+ bannerId: this.bannerId,
+ isBot: this.isBot,
+ isCat: this.isCat
}).then(i => {
this.saving = false;
(this as any).os.i.avatarId = i.avatarId;
diff --git a/src/models/note.ts b/src/models/note.ts
index 5070923363..1274901d45 100644
--- a/src/models/note.ts
+++ b/src/models/note.ts
@@ -324,6 +324,10 @@ export const pack = async (
// resolve promises in _note object
_note = await rap(_note);
+ if (_note.user.isCat && _note.text) {
+ _note.text = _note.text.replace(/な/g, 'にゃ').replace(/ナ/g, 'ニャ');
+ }
+
if (hide) {
_note.mediaIds = [];
_note.text = null;
diff --git a/src/models/user.ts b/src/models/user.ts
index 108111ceca..477bb232e4 100644
--- a/src/models/user.ts
+++ b/src/models/user.ts
@@ -77,6 +77,7 @@ export interface ILocalUser extends IUserBase {
};
lastUsedAt: Date;
isBot: boolean;
+ isCat: boolean;
isPro: boolean;
twoFactorSecret: string;
twoFactorEnabled: boolean;
diff --git a/src/server/api/endpoints/i/update.ts b/src/server/api/endpoints/i/update.ts
index b7b25d0f65..6e0c5b8515 100644
--- a/src/server/api/endpoints/i/update.ts
+++ b/src/server/api/endpoints/i/update.ts
@@ -47,6 +47,11 @@ module.exports = async (params, user, app) => new Promise(async (res, rej) => {
if (isBotErr) return rej('invalid isBot param');
if (isBot != null) user.isBot = isBot;
+ // Get 'isCat' parameter
+ const [isCat, isCatErr] = $.bool.optional().get(params.isCat);
+ if (isCatErr) return rej('invalid isCat param');
+ if (isCat != null) user.isCat = isCat;
+
// Get 'autoWatch' parameter
const [autoWatch, autoWatchErr] = $.bool.optional().get(params.autoWatch);
if (autoWatchErr) return rej('invalid autoWatch param');
@@ -82,6 +87,7 @@ module.exports = async (params, user, app) => new Promise(async (res, rej) => {
bannerColor: user.bannerColor,
profile: user.profile,
isBot: user.isBot,
+ isCat: user.isCat,
settings: user.settings
}
});