|
1 | | -_symfony_logout: |
2 | | - resource: security.route_loader.logout |
3 | | - type: service |
4 | | - |
5 | | -############################################### |
6 | | -# Pages # |
7 | | -############################################### |
8 | | - |
9 | 1 | lobby: |
10 | 2 | path: / |
11 | 3 | methods: [GET] |
|
26 | 18 | methods: [GET] |
27 | 19 | controller: web-interface.page-controller::gameAction |
28 | 20 |
|
29 | | -signup: |
30 | | - path: /signup |
31 | | - methods: [GET, POST] |
32 | | - controller: web-interface.signup-controller::indexAction |
33 | | - |
34 | | -signup_verify_email: |
35 | | - path: /signup/verify-email |
36 | | - methods: [GET] |
37 | | - controller: web-interface.signup-controller::verifyEmailAction |
38 | | - |
39 | | -signup_confirm: |
40 | | - path: /signup/confirm |
41 | | - methods: [GET, POST] |
42 | | - controller: web-interface.signup-controller::confirmAction |
43 | | - |
44 | | -login: |
45 | | - path: /login |
46 | | - methods: [GET, POST] |
47 | | - controller: web-interface.login-controller::indexAction |
48 | | - |
49 | | -login_check_inbox: |
50 | | - path: /login/check-inbox |
51 | | - methods: [GET] |
52 | | - controller: web-interface.login-controller::checkInboxAction |
53 | | - |
54 | | -login_check: |
55 | | - path: /login/check |
56 | | - |
57 | 21 | server_time: |
58 | 22 | path: /api/server-time |
59 | 23 | methods: [GET] |
60 | 24 | controller: web-interface.server-time-controller::serverTimeAction |
61 | 25 | defaults: { _format: json } |
62 | | - |
63 | | -############################################### |
64 | | -# Chat Service # |
65 | | -############################################### |
66 | | - |
67 | | -write_message: |
68 | | - path: /api/chat/chats/{chatId}/write-message |
69 | | - methods: [POST] |
70 | | - controller: web-interface.chat-controller::writeMessageAction |
71 | | - defaults: { _format: json } |
72 | | - |
73 | | -messages: |
74 | | - path: /api/chat/chats/{chatId}/messages |
75 | | - methods: [GET] |
76 | | - controller: web-interface.chat-controller::messagesAction |
77 | | - defaults: { _format: json } |
78 | | - |
79 | | -############################################### |
80 | | -# Connect Four Service # |
81 | | -############################################### |
82 | | - |
83 | | -abort: |
84 | | - path: /api/connect-four/games/{gameId}/abort |
85 | | - methods: [POST] |
86 | | - controller: web-interface.connect-four-controller::abortAction |
87 | | - defaults: { _format: json } |
88 | | - |
89 | | -resign: |
90 | | - path: /api/connect-four/games/{gameId}/resign |
91 | | - methods: [POST] |
92 | | - controller: web-interface.connect-four-controller::resignAction |
93 | | - defaults: { _format: json } |
94 | | - |
95 | | -join: |
96 | | - path: /api/connect-four/games/{gameId}/join |
97 | | - methods: [POST] |
98 | | - controller: web-interface.connect-four-controller::joinAction |
99 | | - defaults: { _format: json } |
100 | | - |
101 | | -move: |
102 | | - path: /api/connect-four/games/{gameId}/move |
103 | | - methods: [POST] |
104 | | - controller: web-interface.connect-four-controller::moveAction |
105 | | - defaults: { _format: json } |
0 commit comments