Martin Jaime
Martin Jaime
I think there could be an improvement in the readme to provide an example of the generate method including the type, for example `:compact`
When the user data is too big, `Cookies.set(_constants.USER_DATA, user, { expires: instance.expires }))` fails silently, the proper error should be raised
Suggested changes in the index: ``` import * as actionTypes from './actionTypes'; export const sessionActionTypes = actionTypes; ```
Right now there is a step in the Dockerfile that does: ``` RUN gem install bundler ``` the problem here is that we could be building two images with the...
For security reasons, I think it makes sense to have the[ login endpoint limited](https://github.com/rootstrap/takion-api/commit/08475520795ac4348c07f73bb097f3dc1a64bd02). For example something like this: ``` RACK_ATTACK_THROTTLE_LIMIT = ENV.fetch('RACK_ATTACK_THROTTLE_LIMIT', 6) RACK_ATTACK_THROTTLE_PERIOD_IN_SECONDS = ENV.fetch('RACK_ATTACK_THROTTLE_PERIOD', 1.minute.to_i) Rack::Attack.throttle( 'requests_to_api_login_path_per_minute_per_ip',...