Human Resources Assistance Control - Api
Human Resources Assistance Control
is an API that allows management of employees and their daily assistances to the office.
See the API documentation live
The HRAC API
allows you to:
There are two roles for employees: admin
and staff
each one is able to do different things:
Feature | Admin | Staff |
---|---|---|
Create and list employees | Yes | No |
See an employee info | Yes | Yes (Only her info) |
Register assistances (entries and exits) | Yes | No |
List assistances | Yes | Yes (Only her assistances) |
See journey report* | Yes | Yes (Only her journeys) |
* A 'Journey' is a summary of the daily activity of an employee, it includes assistances, anomalies and worked hours.
access-token
, client
, and uid
which are sent in the login response.Accept
header passing the version application/vnd.hrac.v1
+json. Default version now is v1, even if the header now is not sent it will use version 1 of the API.Once cloned:
/api-docs
.rake rswag
swaggerize
.9.6
5.1.3
2.3.5
SCHEMAS_HOST
Host for the schemas references. Set it with the value of the production host because swagger.json
documention is generated before deployment with the rake task swagger:host
. See deployment section to see when it is used.
schedule.yml
Handles parameters for working hours.
max_arrive_time: 08H00
min_leave_time: 18H00
min_worked_hours: 8
api.yml
Handles parameters for api documentation. For now json schemas information path and host.
schemas_path: <%= "#{Rails.root}/spec/support/api/schemas/" %>
schemas_host: 'http://localhost:3000'
bundle exec rspec
You can use Heroku for deployment.
First deploy
heroku login
heroku create
RAILS_ENV=production rake swagger:host
git push heroku master
heroku run rake db:migrate
Following deploys
RAILS_ENV=production rake swagger:host
git push heroku master
heroku run rake db:migrate