Skip to content

Commit 28368df

Browse files
authored
Add agent fan club (#8)
* Add agent fan club * Capitalize Agent Fan Club
1 parent f09238f commit 28368df

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@acm-uiuc/js-shared",
3-
"version": "3.6.0",
3+
"version": "3.7.0",
44
"description": "ACM UIUC Shared JS code",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

src/orgs.ts

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export const AllOrganizationIdList = [
2626
"S16",
2727
"S17",
2828
"S18",
29+
"S19",
2930
"C01",
3031
"C02",
3132
"C03",
@@ -87,7 +88,12 @@ export const Organizations: { readonly [K in OrganizationId]: Organization } = {
8788
shortcode: "siggraph",
8889
color: "#7896A7",
8990
},
90-
S06: { name: "ICPC", type: OrgType.SIG, shortcode: "icpc", color: "#AF2A23" },
91+
S06: {
92+
name: "ICPC",
93+
type: OrgType.SIG,
94+
shortcode: "icpc",
95+
color: "#AF2A23",
96+
},
9197
S07: {
9298
name: "SIGMobile",
9399
type: OrgType.SIG,
@@ -100,7 +106,12 @@ export const Organizations: { readonly [K in OrganizationId]: Organization } = {
100106
shortcode: "sigmusic",
101107
color: "#F4DCA3",
102108
},
103-
S09: { name: "GLUG", type: OrgType.SIG, shortcode: "glug", color: "#E94A27" },
109+
S09: {
110+
name: "GLUG",
111+
type: OrgType.SIG,
112+
shortcode: "glug",
113+
color: "#E94A27",
114+
},
104115
S10: {
105116
name: "SIGNLL",
106117
type: OrgType.SIG,
@@ -156,6 +167,12 @@ export const Organizations: { readonly [K in OrganizationId]: Organization } = {
156167
shortcode: "sigtricity",
157168
color: "#4577f8",
158169
},
170+
S19: {
171+
name: "Agent Fan Club",
172+
type: OrgType.SIG,
173+
shortcode: "agentfc",
174+
color: "#4577f8",
175+
},
159176
C01: {
160177
name: "Infrastructure Committee",
161178
type: OrgType.COMMITTEE,

0 commit comments

Comments
 (0)