Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

api endpoints #109 #126

Merged
merged 37 commits into from
Apr 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
177103a
WIP rest API
MathieuNls Jan 10, 2016
3d69cf1
[WIP] rest-api
MathieuNls Jan 13, 2016
f6b546b
Merge branch 'dev' into 109_api_endpoints
MathieuNls Feb 5, 2016
147d76a
Add rest capabilities #101
MathieuNls Feb 7, 2016
df714bd
add test for key model #109
MathieuNls Feb 8, 2016
751da08
add support for PUT and DELETE request in ci_phpunit #109
MathieuNls Feb 8, 2016
b6b74b5
Modify key model to make it more testable #109
MathieuNls Feb 8, 2016
3835bcf
add tear down to clean up test key test #109
MathieuNls Feb 8, 2016
ae256a9
add soft delete of users #109
MathieuNls Feb 8, 2016
7714a81
delete test controller #109
MathieuNls Feb 8, 2016
b16dfe6
Add a rest controller for Users management #109
MathieuNls Feb 8, 2016
061814c
remove debug prints #109
MathieuNls Feb 8, 2016
b0c9b13
Jack now displays delete users #109
MathieuNls Feb 8, 2016
f3dc526
Jack now displays delete users #109
MathieuNls Feb 8, 2016
5681d44
Optimize auto_emal and hooks to use active_user view #109
MathieuNls Feb 8, 2016
ec8fc0f
Merge branch 'dev' into 109_api_endpoints
MathieuNls Feb 8, 2016
5461c0e
some comments for user endpoint #109
MathieuNls Feb 8, 2016
b34769b
add limit configuration #109
MathieuNls Feb 8, 2016
73533c3
reset database variables #109
MathieuNls Feb 8, 2016
3a0e1a0
Add userId to watch deletion for enhanced security #109
MathieuNls Feb 8, 2016
c9bae66
add user id on delete watch for security #109
MathieuNls Feb 8, 2016
29004c9
api key limits are now on method names #109
MathieuNls Feb 8, 2016
6105ac7
add teardown to user api test #109"
MathieuNls Feb 8, 2016
03a38ea
add specific rules for function with arguments in rest API #109
MathieuNls Feb 8, 2016
85d2818
add watche endpoint for rest API #109
MathieuNls Feb 8, 2016
77ef57d
Change require to require_once #109
MathieuNls Feb 9, 2016
bf97166
add helper function to determine if an user owns a given watch or mea…
MathieuNls Feb 9, 2016
3318d25
Measures endpoints #109
MathieuNls Feb 9, 2016
1374e0b
add getNLastMeasuresByUserByWatch function #109
MathieuNls Feb 26, 2016
b5b7c57
add tests for getNLastMeasuresByUserByWatch #109
MathieuNls Feb 27, 2016
30ead84
Adapt watch API to provide getNLastMeasuresByUserByWatch #109
MathieuNls Feb 27, 2016
0daec63
merge dev + remove timezone from json API #109
MathieuNls Apr 11, 2016
9970ded
add csrf_exclude_uris for api #109
MathieuNls Apr 11, 2016
f696d20
change watch API to support 1 letter autocompletion #109
MathieuNls Apr 14, 2016
d1d3582
Several modification to the measure API to ignore filter incomplete &…
MathieuNls Apr 14, 2016
2b34e85
Several modification to the measure API to ignore filter incomplete &…
MathieuNls Apr 14, 2016
519dcda
exclude api calls from csrf rules #109
MathieuNls Apr 14, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_expire'] = 7200;
$config['csrf_regenerate'] = FALSE;
$config['csrf_exclude_uris'] = array();
$config['csrf_exclude_uris'] = array('api/[a-z\/]+');

/*
|--------------------------------------------------------------------------
Expand Down
Loading