feat(client): Reimplement Misskey Rooms

This commit is contained in:
syuilo
2020-05-09 15:47:20 +09:00
parent 71e5892308
commit 0294061c00
149 changed files with 1672 additions and 1 deletions

View File

@@ -56,6 +56,8 @@ export const defaultDeviceSettings = {
imageNewTab: false,
showFixedPostForm: false,
disablePagesScript: true,
roomGraphicsQuality: 'medium',
roomUseOrthographicCamera: true,
sfxVolume: 0.3,
sfxNote: 'syuilo/down',
sfxNoteMy: 'syuilo/up',
@@ -187,6 +189,12 @@ export default () => new Vuex.Store({
icon: faTerminal,
to: '/scratchpad',
},
rooms: {
title: 'rooms',
icon: faDoorClosed,
get show() { return getters.isSignedIn; },
get to() { return `/@${state.i.username}/room`; },
},
}),
},