Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
59db762d
Commit
59db762d
authored
11 years ago
by
Tom Needham
Browse files
Options
Downloads
Patches
Plain Diff
Change app identifier for core api routes
parent
d33f6b9a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ocs/routes.php
+8
-8
8 additions, 8 deletions
ocs/routes.php
with
8 additions
and
8 deletions
ocs/routes.php
+
8
−
8
View file @
59db762d
...
@@ -6,16 +6,16 @@
...
@@ -6,16 +6,16 @@
*/
*/
// Config
// Config
OC_API
::
register
(
'get'
,
'/config'
,
array
(
'OC_OCS_Config'
,
'apiConfig'
),
'
ocs
'
,
OC_API
::
GUEST_AUTH
);
OC_API
::
register
(
'get'
,
'/config'
,
array
(
'OC_OCS_Config'
,
'apiConfig'
),
'
core
'
,
OC_API
::
GUEST_AUTH
);
// Person
// Person
OC_API
::
register
(
'post'
,
'/person/check'
,
array
(
'OC_OCS_Person'
,
'check'
),
'
ocs
'
,
OC_API
::
GUEST_AUTH
);
OC_API
::
register
(
'post'
,
'/person/check'
,
array
(
'OC_OCS_Person'
,
'check'
),
'
core
'
,
OC_API
::
GUEST_AUTH
);
// Activity
// Activity
OC_API
::
register
(
'get'
,
'/activity'
,
array
(
'OC_OCS_Activity'
,
'activityGet'
),
'
ocs
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'get'
,
'/activity'
,
array
(
'OC_OCS_Activity'
,
'activityGet'
),
'
core
'
,
OC_API
::
USER_AUTH
);
// Privatedata
// Privatedata
OC_API
::
register
(
'get'
,
'/privatedata/getattribute'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
ocs
'
,
OC_API
::
USER_AUTH
,
array
(
'app'
=>
''
,
'key'
=>
''
));
OC_API
::
register
(
'get'
,
'/privatedata/getattribute'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
core
'
,
OC_API
::
USER_AUTH
,
array
(
'app'
=>
''
,
'key'
=>
''
));
OC_API
::
register
(
'get'
,
'/privatedata/getattribute/{app}'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
ocs
'
,
OC_API
::
USER_AUTH
,
array
(
'key'
=>
''
));
OC_API
::
register
(
'get'
,
'/privatedata/getattribute/{app}'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
core
'
,
OC_API
::
USER_AUTH
,
array
(
'key'
=>
''
));
OC_API
::
register
(
'get'
,
'/privatedata/getattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
ocs
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'get'
,
'/privatedata/getattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'get'
),
'
core
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'post'
,
'/privatedata/setattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'set'
),
'
ocs
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'post'
,
'/privatedata/setattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'set'
),
'
core
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'post'
,
'/privatedata/deleteattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'delete'
),
'
ocs
'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'post'
,
'/privatedata/deleteattribute/{app}/{key}'
,
array
(
'OC_OCS_Privatedata'
,
'delete'
),
'
core
'
,
OC_API
::
USER_AUTH
);
// cloud
// cloud
OC_API
::
register
(
'get'
,
'/cloud/capabilities'
,
array
(
'OC_OCS_Cloud'
,
'getCapabilities'
),
'core'
,
OC_API
::
USER_AUTH
);
OC_API
::
register
(
'get'
,
'/cloud/capabilities'
,
array
(
'OC_OCS_Cloud'
,
'getCapabilities'
),
'core'
,
OC_API
::
USER_AUTH
);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment