Skip to content

Commit bc73347

Browse files
committed
Merge branch 'help-add-members' into dev
2 parents b7ed520 + 6c98a1a commit bc73347

11 files changed

Lines changed: 162 additions & 4 deletions

File tree

9.46 KB
Loading
12 KB
Loading
7.41 KB
Loading
6.56 KB
Loading
9.76 KB
Loading
7.36 KB
Loading
7.83 KB
Loading

apps/client/src/pages/home/Help/Help.vue

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,33 @@
2222
</router-link>
2323
</li>
2424

25+
<li>
26+
<router-link :to="{ name: 'help/offline-usage' }">
27+
Can I use DeepNotes while offline?
28+
</router-link>
29+
</li>
30+
31+
<li>
32+
<router-link :to="{ name: 'help/multi-page-text-search' }">
33+
Can I search text across multiple pages?
34+
</router-link>
35+
</li>
36+
2537
<li>
2638
<router-link :to="{ name: 'help/how-to-create-a-group' }">
2739
How to create a group?
2840
</router-link>
2941
</li>
3042

3143
<li>
32-
<router-link :to="{ name: 'help/offline-usage' }">
33-
Can I use DeepNotes while offline?
44+
<router-link :to="{ name: 'help/inviting-users' }">
45+
How to invite users to a group?
3446
</router-link>
3547
</li>
3648

3749
<li>
38-
<router-link :to="{ name: 'help/multi-page-text-search' }">
39-
Can I search text across multiple pages?
50+
<router-link :to="{ name: 'help/joining-group' }">
51+
How to join a group?
4052
</router-link>
4153
</li>
4254
</ul>
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<template>
2+
<div style="font-size: 28px; font-weight: bold">{{ title }}</div>
3+
4+
<Gap style="height: 36px" />
5+
6+
<div style="max-width: 600px">
7+
<ol class="steps">
8+
<li>
9+
Go to a page of the group you want to add members to. Make sure there's
10+
nothing selected on the page.
11+
</li>
12+
13+
<li>
14+
On the right sidebar, click on <b>Group settings</b>.<br />
15+
16+
<br />
17+
18+
<img src="/help/inviting-users/group-settings-button.webp" />
19+
</li>
20+
21+
<li>
22+
Go to the <b>Join invitations</b> tab and click on
23+
<b>Invite new member</b>.<br />
24+
25+
<br />
26+
27+
<img src="/help/inviting-users/group-settings-tabs.webp" />
28+
29+
<InlineGap style="width: 24px" />
30+
31+
<img src="/help/inviting-users/invite-new-member-button.webp" />
32+
</li>
33+
34+
<li>
35+
Fill the form fields and click <b>Ok</b> to invite the user.<br />
36+
37+
<br />
38+
39+
<img src="/help/inviting-users/invite-user-dialog.webp" />
40+
</li>
41+
42+
<li>
43+
Now the user decides if they want to <b>accept</b> or <b>reject</b> the
44+
invitation.<br />
45+
46+
<br />
47+
48+
<img src="/help/inviting-users/accept-reject-invitation.webp" />
49+
</li>
50+
</ol>
51+
</div>
52+
</template>
53+
54+
<script setup lang="ts">
55+
const title = 'How to invite users to a group?';
56+
57+
useMeta(() => ({
58+
title: `${title} - Help - DeepNotes`,
59+
}));
60+
</script>
61+
62+
<style scoped lang="scss">
63+
ol.steps > li {
64+
margin-bottom: 24px;
65+
}
66+
67+
img {
68+
vertical-align: top;
69+
border: 1px solid rgba(255, 255, 255, 0.3);
70+
}
71+
</style>
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<template>
2+
<div style="font-size: 28px; font-weight: bold">{{ title }}</div>
3+
4+
<Gap style="height: 36px" />
5+
6+
<div style="max-width: 600px">
7+
To send a request to join a group, a user has to:
8+
9+
<ol class="steps">
10+
<li>
11+
Go to a page of the group they want to join and click on
12+
<b>Request access</b>.<br />
13+
14+
<br />
15+
16+
<img src="/help/joining-group/request-access-screen.webp" />
17+
</li>
18+
19+
<li>
20+
Choose a name to use within the group and click <b>Ok</b>.<br />
21+
22+
<br />
23+
24+
<img src="/help/joining-group/request-access-dialog.webp" />
25+
</li>
26+
27+
<li>
28+
Now wait for the admins to <b>accept</b> or <b>reject</b> the request.
29+
</li>
30+
</ol>
31+
</div>
32+
</template>
33+
34+
<script setup lang="ts">
35+
const title = 'How to join a group?';
36+
37+
useMeta(() => ({
38+
title: `${title} - Help - DeepNotes`,
39+
}));
40+
</script>
41+
42+
<style scoped lang="scss">
43+
ol.steps > li {
44+
margin-bottom: 24px;
45+
}
46+
47+
img {
48+
vertical-align: top;
49+
border: 1px solid rgba(255, 255, 255, 0.3);
50+
}
51+
</style>

0 commit comments

Comments
 (0)