Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

merge request #46

Merged
merged 2 commits into from
Jul 7, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 src/Ojstr/ApiBundle/Controller/ArticleRestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function getArticlesAction($page = 0, $limit = 10) {
*
* @ApiDoc(
* resource=true,
* description="Get Article Action"
* description="Get Specific Article"
* )
*
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Ojstr/ApiBundle/Controller/AuthorRestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class AuthorRestController extends FOSRestController {
*
* @ApiDoc(
* resource=true,
* description="Get Journal Issues"
* description="Get Authors"
* )
* @Get("/authors")
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Ojstr/ApiBundle/Controller/ContactRestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ContactRestController extends FOSRestController {
*
* @ApiDoc(
* resource=true,
* description="Get Journal Issues"
* description="Get Contacts"
* )
* @Get("/contacts")
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Ojstr/ApiBundle/Controller/JournalRestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function getJournalIssues($id) {
*
* @ApiDoc(
* resource=true,
* description="Get Journal Action"
* description="Get Specific Journal"
* )
*/
public function getJournalAction($id) {
Expand All @@ -47,7 +47,7 @@ public function getJournalAction($id) {
*
* @ApiDoc(
* resource=true,
* description="Get Journal Users Action",
* description="Get Specific Journal Of Users Action",
* parameters={
* {
* "name"="page",
Expand Down
5 changes: 0 additions & 5 deletions src/Ojstr/ApiBundle/Controller/TestRestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@

class TestRestController extends FOSRestController {

/**
*
* @ApiDoc()
* @Get("/test")
*/
public function getTestAction() {
$res = array("status" => "ok");
return $res;
Expand Down