mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
Client: Guilds Discovery (#8529)
* wip: add guilds discovery page * add public guilds page * fix and add tests for the groups utilities mixin
This commit is contained in:
@@ -18,6 +18,7 @@ import SocialContainer from './components/social/index';
|
||||
import TavernPage from './components/social/tavern';
|
||||
import InboxPage from './components/social/inbox/index';
|
||||
import InboxConversationPage from './components/social/inbox/conversationPage';
|
||||
import GuildsDiscoveryPage from './components/social/guilds/discovery/index';
|
||||
|
||||
Vue.use(VueRouter);
|
||||
|
||||
@@ -60,7 +61,17 @@ export default new VueRouter({
|
||||
},
|
||||
{ name: 'challenges', path: 'challenges', component: Page },
|
||||
{ name: 'party', path: 'party', component: Page },
|
||||
{ name: 'guilds', path: 'guilds', component: Page },
|
||||
{
|
||||
path: 'guilds',
|
||||
component: EmptyView,
|
||||
children: [
|
||||
{
|
||||
name: 'guilds',
|
||||
path: '',
|
||||
component: GuildsDiscoveryPage,
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user