-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathurls.ts
53 lines (52 loc) · 1.47 KB
/
urls.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// @ts-ignore
import GuidesIcon from "$lib/images/guides-card-icon.svg?dataurl"
export const GUIDES = {
BUILD_APP: {
title: "Building an application",
href: "/guides/building-an-application",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
BUILD_DATA_SOURCE: {
title: "Building a data source",
href: "/guides/building-a-data-source",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
BUILD_DATA_DEF: {
title: "How to create data definitions",
href: "/guides/building-a-data-definition",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
VERIFY_CONSENT: {
title: "How to verify consent in data source",
href: "/guides/verifying-consent-in-data-source",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
MANAGE_GROUP: {
title: "How to create and manage a group",
href: "/guides/managing-groups",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
MANAGE_GROUP_MEMBERS: {
title: "How to manage group members",
href: "/guides/managing-group-members",
alt: "Data schemas",
cardImage: GuidesIcon,
},
USING_LOGIN_PROVIDER: {
title: "How to use dataspace login in an application",
href: "/guides/using-login-provider",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
VERIFY_ID_TOKEN: {
title: "Verify id_token in data source",
href: "/guides/verifying-id-token",
cardImageAlt: "Paper sheet",
cardImage: GuidesIcon,
},
}