-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathurls.ts
More file actions
61 lines (60 loc) · 1.65 KB
/
urls.ts
File metadata and controls
61 lines (60 loc) · 1.65 KB
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
54
55
56
57
58
59
60
61
export const GUIDES = {
BUILD_DATA_SOURCE: {
title: "Building a data source",
href: "/guides/building-a-data-source",
},
BUILD_DATA_DEF: {
title: "How to create data definitions",
href: "/guides/building-a-data-definition",
},
MANAGE_GROUP: {
title: "How to create and manage a group",
href: "/guides/managing-groups",
},
MANAGE_GROUP_MEMBERS: {
title: "How to manage group members",
href: "/guides/managing-group-members",
},
VERIFYING_API_TOKENS: {
title: "Verifying API tokens",
href: "/guides/verifying-api-tokens",
},
USING_DATA_SOURCES: {
title: "Using data sources",
href: "/guides/using-data-sources",
},
ERROR_RESPONSES: {
title: "Error responses",
href: "/guides/error-responses",
},
PARTY_CONFIGURATION: {
title: "Setting up a party configuration domain",
href: "/guides/party-configuration",
},
BUILD_APP: {
title: "Legacy: Building an application",
href: "/guides/building-an-application",
},
VERIFY_CONSENT: {
title: "Legacy: How to verify consent in data source",
href: "/guides/verifying-consent-in-data-source",
},
USING_LOGIN_PROVIDER: {
title: "Legacy: How to use dataspace login in an application",
href: "/guides/using-login-provider",
},
VERIFY_ID_TOKEN: {
title: "Legacy: Verify id_token in data source",
href: "/guides/verifying-id-token",
},
}
export const VIDEO_GUIDES = {
DEFINING_DATA_PRODUCTS: {
title: "Defining Data Products",
href: "https://www.youtube.com/watch?v=yPzN04ICsbw",
},
PRODUCTIZING_DATA: {
title: "Productizing Data",
href: "https://www.youtube.com/watch?v=f-f6P_-8zoQ",
},
}