openstackid-resources/app
smarcet 9f01b9e3b3 Booking Rooms Model
* model changes

* Endpoint to get all avaible booking rooms per summit

GET /api/v1/summits/{id}/locations/bookable-rooms

query string params

page ( int ) current page number
per_page ( int) max amount of items per page
filter ( allowed fields: name, description, cost, capacity, availability_day[epoch], attribute[string|number])
order ( allowed fields id,name,capacity)
expand ( allowed relations venue,floor,attribute_type)

scopes
%s/bookable-rooms/read
%s/summits/read/all

* Endpoint to get slot availability  per room

GET /api/v1/summits/{id}/locations/bookable-rooms/{room_id}/availability/{day}

where id is summit id (integer)
room_id ( integer)
and day (epoch timestamp)

scopes
%s/bookable-rooms/read
%s/summits/read/all

* endpoint create reservation

POST /api/v1/summits/{id}/locations/bookable-rooms/{room_id}/reservations

payload

'currency'       => 'required|string|currency_iso',
'amount'         => 'required|integer',
'start_datetime' => 'required|date_format:U',
'end_datetime'   => 'required|date_format:U|after:start_datetime',

scopes
%s/bookable-rooms/my-reservations/write

* endpoint to get all my reservations

GET /api/v1/summits/{id}/locations/bookable-rooms/all/reservations/me

query string params

expand [owner, room, type]

scopes
%s/bookable-rooms/my-reservations/read

* endpoint to cancel/ask for refund a reservation

DELETE /api/v1/summits/{id}/locations/bookable-rooms/all/reservations/{reservation_id}

scopes
%s/bookable-rooms/my-reservations/write

Change-Id: I741878c6ffc833ba23fca40f09f4664b42c8edd4
2019-06-03 19:20:15 -03:00
..
Console Fix on speakers pics urls 2019-04-30 14:14:12 -03:00
EntityPersisters Fixed wrong entity manager name 2019-05-07 17:38:29 -03:00
Events Revert "Update API code to work with Presentation Moderators collection (+N)" 2019-02-21 12:21:54 -03:00
Exceptions Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
Factories Added endpoints to CRUD presentation materials 2019-04-08 19:30:08 -03:00
Http Booking Rooms Model 2019-06-03 19:20:15 -03:00
Jobs Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
Listeners Query Stack trace listener 2016-11-15 23:11:14 -03:00
Mail Added endpoints for speakers profile edit request 2019-05-06 18:04:11 -03:00
ModelSerializers Booking Rooms Model 2019-06-03 19:20:15 -03:00
Models Booking Rooms Model 2019-06-03 19:20:15 -03:00
Permissions Added permissions schema per entity fields 2018-07-23 16:53:37 -03:00
Policies Upgrade Laravel Version and ORM Framework 2016-09-06 13:47:37 -03:00
Providers Booking Rooms Model 2019-06-03 19:20:15 -03:00
Repositories Booking Rooms Model 2019-06-03 19:20:15 -03:00
Security Booking Rooms Model 2019-06-03 19:20:15 -03:00
Services Booking Rooms Model 2019-06-03 19:20:15 -03:00
User.php Migration to PHP 7.x 2018-11-23 11:50:55 -03:00