Implemented filtering by tags in ListShortcodesAction

This commit is contained in:
Alejandro Celaya
2016-10-22 13:04:17 +02:00
parent 8b9caf02d2
commit 52bb14bd66
4 changed files with 16 additions and 6 deletions

View File

@@ -74,6 +74,7 @@ class ListShortcodesAction extends AbstractRestAction
return [
isset($query['page']) ? $query['page'] : 1,
isset($query['searchTerm']) ? $query['searchTerm'] : null,
isset($query['tags']) ? $query['tags'] : [],
];
}
}