Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit b6c6e5a

Browse files
committed
chore: add rivet-gg to authors of first-party modules
1 parent ad4b894 commit b6c6e5a

File tree

33 files changed

+1051
-985
lines changed

33 files changed

+1051
-985
lines changed

modules/achievements/module.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
"tags": [
66
"competitive"
77
],
8-
"authors": [],
8+
"authors": [
9+
"rivet-gg"
10+
],
911
"status": "coming_soon",
10-
"scripts": {},
11-
"errors": {}
12+
"scripts": {},
13+
"errors": {}
1214
}

modules/analytics/module.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
"tags": [
66
"analytics"
77
],
8-
"authors": [],
8+
"authors": [
9+
"rivet-gg"
10+
],
911
"status": "coming_soon",
10-
"scripts": {},
11-
"errors": {}
12+
"scripts": {},
13+
"errors": {}
1214
}

modules/auth_email/module.json

Lines changed: 73 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,77 @@
11
{
2-
"name": "Auth Email",
3-
"description": "[INTERNAL-ONLY: use auth_email_password/auth_email_passwordless/auth_email_link.] Authenticating users with email only or an email/password combination.",
4-
"icon": "key",
5-
"tags": [
6-
"core",
7-
"auth",
8-
"user"
9-
],
10-
"authors": [
11-
"rivet-gg",
12-
"NathanFlurry",
13-
"Blckbrry-Pi"
14-
],
15-
"status": "stable",
16-
"dependencies": {
17-
"email": {},
18-
"identities": {},
19-
"users": {},
20-
"tokens": {},
21-
"user_passwords": {},
22-
"rate_limit": {}
23-
},
24-
"defaultConfig": {
25-
"fromEmail": "hello@test.com",
26-
"fromName": "Authentication Code"
27-
},
28-
"scripts": {
29-
"send_verification": {
30-
"name": "Send Email Verification (No Password)",
31-
"description": "Send a one-time verification code to an email address to verify ownership. Does not require a password."
32-
},
33-
"verify_add_no_pass": {
34-
"name": "Verify and Add Email to Existing User (No Password)",
35-
"description": "Verify a user's email address and register it with an existing account. Does not require a password."
36-
},
37-
"verify_login_or_create_no_pass": {
38-
"name": "Verify and Login as (or Create) User (No Password)",
39-
"description": "Verify the email address code and return a userToken to AN account (creates a new account if one doesn't exist). Does not require a password."
40-
},
41-
"verify_link_email": {
42-
"name": "Verify and Link Email Address to User",
43-
"description": "Verify a user's email address and link it to an existing account without allowing login passwordless."
44-
},
45-
46-
"verify_sign_up_email_pass": {
47-
"name": "Verify and Sign Up with Email and Password",
48-
"description": "Sign up a new user with an email and password."
49-
},
50-
"sign_in_email_pass": {
51-
"name": "Sign In with Email and Password",
52-
"description": "Sign in a user with an email and password."
53-
},
54-
"verify_add_email_pass": {
55-
"name": "Verify and Add Email and Password to existing user",
56-
"description": "Verify a user's email address and register it with an existing account. Requires a password."
57-
}
58-
},
59-
"errors": {
60-
"verification_code_invalid": {
61-
"name": "Verification Code Invalid"
62-
},
63-
"verification_code_attempt_limit": {
64-
"name": "Verification Code Attempt Limit"
65-
},
66-
"verification_code_expired": {
67-
"name": "Verification Code Expired"
68-
},
69-
"verification_code_already_used": {
70-
"name": "Verification Code Already Used"
71-
},
72-
"email_already_used": {
73-
"name": "Email Already Used"
74-
}
75-
},
2+
"name": "Auth Email",
3+
"description": "[INTERNAL-ONLY: use auth_email_password/auth_email_passwordless/auth_email_link.] Authenticating users with email only or an email/password combination.",
4+
"icon": "key",
5+
"tags": [
6+
"core",
7+
"auth",
8+
"user"
9+
],
10+
"authors": [
11+
"rivet-gg",
12+
"NathanFlurry",
13+
"Blckbrry-Pi"
14+
],
15+
"status": "stable",
16+
"dependencies": {
17+
"email": {},
18+
"identities": {},
19+
"users": {},
20+
"tokens": {},
21+
"user_passwords": {},
22+
"rate_limit": {}
23+
},
24+
"defaultConfig": {
25+
"fromEmail": "hello@test.com",
26+
"fromName": "Authentication Code"
27+
},
28+
"scripts": {
29+
"send_verification": {
30+
"name": "Send Email Verification (No Password)",
31+
"description": "Send a one-time verification code to an email address to verify ownership. Does not require a password."
32+
},
33+
"verify_add_no_pass": {
34+
"name": "Verify and Add Email to Existing User (No Password)",
35+
"description": "Verify a user's email address and register it with an existing account. Does not require a password."
36+
},
37+
"verify_login_or_create_no_pass": {
38+
"name": "Verify and Login as (or Create) User (No Password)",
39+
"description": "Verify the email address code and return a userToken to AN account (creates a new account if one doesn't exist). Does not require a password."
40+
},
41+
"verify_link_email": {
42+
"name": "Verify and Link Email Address to User",
43+
"description": "Verify a user's email address and link it to an existing account without allowing login passwordless."
44+
},
45+
"verify_sign_up_email_pass": {
46+
"name": "Verify and Sign Up with Email and Password",
47+
"description": "Sign up a new user with an email and password."
48+
},
49+
"sign_in_email_pass": {
50+
"name": "Sign In with Email and Password",
51+
"description": "Sign in a user with an email and password."
52+
},
53+
"verify_add_email_pass": {
54+
"name": "Verify and Add Email and Password to existing user",
55+
"description": "Verify a user's email address and register it with an existing account. Requires a password."
56+
}
57+
},
58+
"errors": {
59+
"verification_code_invalid": {
60+
"name": "Verification Code Invalid"
61+
},
62+
"verification_code_attempt_limit": {
63+
"name": "Verification Code Attempt Limit"
64+
},
65+
"verification_code_expired": {
66+
"name": "Verification Code Expired"
67+
},
68+
"verification_code_already_used": {
69+
"name": "Verification Code Already Used"
70+
},
71+
"email_already_used": {
72+
"name": "Email Already Used"
73+
}
74+
},
7675
"enableConfig": {
7776
"enable": true
7877
}

modules/auth_email_link/module.json

Lines changed: 35 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
{
2-
"name": "Auth Email Linking",
3-
"description": "Link emails to users.",
4-
"icon": "key",
5-
"tags": [
6-
"core",
7-
"auth",
8-
"user"
9-
],
10-
"authors": [
11-
"rivet-gg",
12-
"Blckbrry-Pi"
13-
],
14-
"status": "stable",
15-
"dependencies": { "auth_email": {} },
16-
"defaultConfig": {
17-
"enable": false
18-
},
19-
"scripts": {
20-
"send_verification": {
21-
"name": "Send Email Verification",
22-
"description": "Send a one-time verification code to an email address to verify ownership.",
23-
"public": true
24-
},
25-
"verify_link_email": {
26-
"name": "Verify and Link Email Address to User",
27-
"description": "Verify a user's email address and link it to an existing account without implicitly allowing login."
28-
}
29-
},
30-
"errors": {
31-
"provider_disabled": {
32-
"name": "Provider Disabled"
33-
}
34-
}
2+
"name": "Auth Email Linking",
3+
"description": "Link emails to users.",
4+
"icon": "key",
5+
"tags": [
6+
"core",
7+
"auth",
8+
"user"
9+
],
10+
"authors": [
11+
"rivet-gg",
12+
"Blckbrry-Pi"
13+
],
14+
"status": "stable",
15+
"dependencies": {
16+
"auth_email": {}
17+
},
18+
"defaultConfig": {
19+
"enable": false
20+
},
21+
"scripts": {
22+
"send_verification": {
23+
"name": "Send Email Verification",
24+
"description": "Send a one-time verification code to an email address to verify ownership.",
25+
"public": true
26+
},
27+
"verify_link_email": {
28+
"name": "Verify and Link Email Address to User",
29+
"description": "Verify a user's email address and link it to an existing account without implicitly allowing login."
30+
}
31+
},
32+
"errors": {
33+
"provider_disabled": {
34+
"name": "Provider Disabled"
35+
}
36+
}
3537
}
Lines changed: 46 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,48 @@
11
{
2-
"name": "Auth Email/Password",
3-
"description": "Authenticate users with an email/password combination.",
4-
"icon": "key",
5-
"tags": [
6-
"core",
7-
"auth",
8-
"user"
9-
],
10-
"authors": [
11-
"rivet-gg",
12-
"Blckbrry-Pi"
13-
],
14-
"status": "stable",
15-
"dependencies": { "auth_email": {} },
16-
"defaultConfig": {
17-
"enable": false
18-
},
19-
"scripts": {
20-
"send_verification": {
21-
"name": "Send Email Verification",
22-
"description": "Send a one-time verification code to an email address to verify ownership.",
23-
"public": true
24-
},
25-
"verify_sign_up_email_pass": {
26-
"name": "Verify and Sign Up with Email and Password",
27-
"description": "Verify a user's email address and register a new user with an email and password.",
28-
"public": true
29-
},
30-
"sign_in_email_pass": {
31-
"name": "Sign In with Email and Password",
32-
"description": "Sign in a user with an email and password.",
33-
"public": true
34-
},
35-
"verify_add_email_pass": {
36-
"name": "Verify and Add Email and Password to existing user",
37-
"description": "Verify a user's email address and register it with an existing account.",
38-
"public": true
39-
}
40-
},
41-
"errors": {
42-
"provider_disabled": {
43-
"name": "Provider Disabled"
44-
}
45-
}
2+
"name": "Auth Email/Password",
3+
"description": "Authenticate users with an email/password combination.",
4+
"icon": "key",
5+
"tags": [
6+
"core",
7+
"auth",
8+
"user"
9+
],
10+
"authors": [
11+
"rivet-gg",
12+
"Blckbrry-Pi"
13+
],
14+
"status": "stable",
15+
"dependencies": {
16+
"auth_email": {}
17+
},
18+
"defaultConfig": {
19+
"enable": false
20+
},
21+
"scripts": {
22+
"send_verification": {
23+
"name": "Send Email Verification",
24+
"description": "Send a one-time verification code to an email address to verify ownership.",
25+
"public": true
26+
},
27+
"verify_sign_up_email_pass": {
28+
"name": "Verify and Sign Up with Email and Password",
29+
"description": "Verify a user's email address and register a new user with an email and password.",
30+
"public": true
31+
},
32+
"sign_in_email_pass": {
33+
"name": "Sign In with Email and Password",
34+
"description": "Sign in a user with an email and password.",
35+
"public": true
36+
},
37+
"verify_add_email_pass": {
38+
"name": "Verify and Add Email and Password to existing user",
39+
"description": "Verify a user's email address and register it with an existing account.",
40+
"public": true
41+
}
42+
},
43+
"errors": {
44+
"provider_disabled": {
45+
"name": "Provider Disabled"
46+
}
47+
}
4648
}

0 commit comments

Comments
 (0)