Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove VideoController API version (it is not needed)
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Ruget <fred@atlant.is>
douzebis committed Jun 2, 2021
1 parent 5c2aa38 commit d6bfa74
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@
'ocs' => [
[
'name' => 'video#getTracks',
'url' => '/video/v1.0/tracks',
'url' => '/video/tracks',
'verb' => 'GET',
]
]
2 changes: 1 addition & 1 deletion src/components/Videos.vue
Original file line number Diff line number Diff line change
@@ -134,7 +134,7 @@ export default {
async fetchTracks() {
try {
const response = await axios.get(
generateOcsUrl('/apps/viewer/video/v1.0/tracks'),
generateOcsUrl('/apps/viewer/video/tracks'),
{ params: { videoPath: this.filename } }
)
const davDir = dirname(this.davPath)

0 comments on commit d6bfa74

Please sign in to comment.