Skip to content

Commit

Permalink
Merge pull request #36 from NewcastleRSE/dev
Browse files Browse the repository at this point in the history
added new team option
  • Loading branch information
markdturner authored Aug 15, 2024
2 parents 2d1a9bb + 6c607c8 commit 64c38e4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
3 changes: 2 additions & 1 deletion src/api/rse/content-types/rse/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
],
"required": true
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"x-generation-date": "2024-08-11T20:31:28.429Z"
"x-generation-date": "2024-08-15T18:42:42.495Z"
},
"x-strapi-config": {
"path": "/documentation",
Expand Down Expand Up @@ -227,7 +227,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -1464,7 +1465,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -3406,7 +3408,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -5091,7 +5094,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -6286,7 +6290,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -7015,7 +7020,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -7149,7 +7155,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down Expand Up @@ -7202,7 +7209,8 @@
"enum": [
"WebMobile",
"Middleware",
"DataScience"
"DataScience",
"HPC"
]
},
"assignments": {
Expand Down
4 changes: 3 additions & 1 deletion types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1160,7 +1160,9 @@ export interface ApiRseRse extends Schema.CollectionType {
personnelNumber: Attribute.BigInteger &
Attribute.Required &
Attribute.Unique;
team: Attribute.Enumeration<['WebMobile', 'Middleware', 'DataScience']> &
team: Attribute.Enumeration<
['WebMobile', 'Middleware', 'DataScience', 'HPC']
> &
Attribute.Required;
assignments: Attribute.Relation<
'api::rse.rse',
Expand Down

0 comments on commit 64c38e4

Please sign in to comment.