-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.txt
62 lines (53 loc) · 1.23 KB
/
todo.txt
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
62
TODO 20/10/2017: enforce minimum password length: 6.
TODO: fix json input for other services (than club, passengers, vehicules, travel)
24/8/2017
Now Club registration is like:
{
"identifier":"aaabbb",
"clubs":[
{
"clubId":"10000",
"password":"FirstDummy"
},
{
"name":"newClub",
"password":"FirstDummy"
}
]
}
3/7/2017
Implement CASE 6:
#Case 6a
Given Remy is in Xsara car
And Opel car has free seats
When Remy moves from Xsara to Opel
Then Remy is unlinked with Xsara
And Remy is linked to Opel
#Case 6b
Given Remy is in Xsara car
And Opel car has no more free seats
When Remy moves from Xsara to Opel
Then Remy is unlinked with Xsara
And Remy is linked to Sidewalk
And A message says the Opel car had no more seats
2/4/17 - Too many Clubs can be created with that request. This would create 2 new clubs.
The same identifier should not be able to create new clubs too quickly!
This should be avoided too:
POST /club
[
{
"identifier":"aaabbb"
},
{
"clubs":[
{
"name":"newClub",
"password":"FirstDummy"
},
{
"name":"newClub",
"password":"FirstDummy"
}
]
}
]