fix(api docs): Removing version tags in api docs

This commit is contained in:
Chris Troutner
2019-06-13 09:52:26 -07:00
parent 4631b73999
commit f20cb0bcc6
2 changed files with 0 additions and 6 deletions
-1
View File
@@ -14,7 +14,6 @@ const passport = require('koa-passport')
/**
* @api {post} /auth Authenticate user
* @apiVersion 1.0.0
* @apiName AuthUser
* @apiGroup Auth
*
-5
View File
@@ -3,7 +3,6 @@ const User = require('../../models/users')
/**
* @api {post} /users Create a new user
* @apiPermission
* @apiVersion 1.0.0
* @apiName CreateUser
* @apiGroup Users
*
@@ -65,7 +64,6 @@ async function createUser (ctx) {
/**
* @api {get} /users Get all users
* @apiPermission user
* @apiVersion 1.0.0
* @apiName GetUsers
* @apiGroup Users
*
@@ -98,7 +96,6 @@ async function getUsers (ctx) {
/**
* @api {get} /users/:id Get user by id
* @apiPermission user
* @apiVersion 1.0.0
* @apiName GetUser
* @apiGroup Users
*
@@ -147,7 +144,6 @@ async function getUser (ctx, next) {
/**
* @api {put} /users/:id Update a user
* @apiPermission
* @apiVersion 1.0.0
* @apiName UpdateUser
* @apiGroup Users
*
@@ -208,7 +204,6 @@ async function updateUser (ctx) {
/**
* @api {delete} /users/:id Delete a user
* @apiPermission
* @apiVersion 1.0.0
* @apiName DeleteUser
* @apiGroup Users
*