Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fixtures/position_create.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"oid": "alice-johnson-uuid",
"officer_id": "alice-johnson-uuid",
"semester": "Spring 2024",
"tier": 1
}
6 changes: 3 additions & 3 deletions fixtures/position_delete.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"oid": "bob-smith-uuid",
"semester": "Fall 2023",
"tier": 2
"officer_id": "alice-johnson-uuid",
"semester": "Spring 2024",
"tier": 1
}
12 changes: 3 additions & 9 deletions fixtures/position_update.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
{
"oid": "alice-johnson-uuid",
"officer_id": "alice-johnson-uuid",
"semester": "Spring 2024",
"tier": 1,
"full_name": "Alice M. Johnson",
"title": {
"string": "President & Event Coordinator",
"valid": true
},
"team": {
"string": "Leadership",
"valid": true
}
"title": "President & Event Coordinator",
"team": "Leadership"
}
15 changes: 3 additions & 12 deletions fixtures/tier_create.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"tier": 1,
"title": {
"string": "President",
"valid": true
},
"t_index": {
"int64": 100,
"valid": true
},
"team": {
"string": "Executive",
"valid": true
}
"title": "President",
"t_index": 100,
"team": "Executive"
}
15 changes: 3 additions & 12 deletions fixtures/tier_create_dev_team.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"tier": 3,
"title": {
"string": "Developer",
"valid": true
},
"t_index": {
"int64": 300,
"valid": true
},
"team": {
"string": "Dev Team",
"valid": true
}
"title": "Developer",
"t_index": 300,
"team": "Dev Team"
}
15 changes: 3 additions & 12 deletions fixtures/tier_update.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"tier": 1,
"title": {
"string": "Club President",
"valid": true
},
"t_index": {
"int64": 50,
"valid": true
},
"team": {
"string": "Leadership",
"valid": true
}
"title": "Treasurer",
"t_index": 50,
"team": "Leadership"
}
Loading
Loading