groups_controller.rb 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
  2. class GroupsController < ApplicationController
  3. prepend_before_action { authentication_check(permission: 'admin.group') }
  4. =begin
  5. Format:
  6. JSON
  7. Example:
  8. {
  9. "id":1,
  10. "name":"some group",
  11. "assignment_timeout": null,
  12. "follow_up_assignment": true,
  13. "follow_up_possible": "yes",
  14. "note":"",
  15. "active":true,
  16. "updated_at":"2012-09-14T17:51:53Z",
  17. "created_at":"2012-09-14T17:51:53Z",
  18. "created_by_id":2,
  19. }
  20. =end
  21. =begin
  22. Resource:
  23. GET /api/v1/groups
  24. Response:
  25. [
  26. {
  27. "id": 1,
  28. "name": "some_name1",
  29. ...
  30. },
  31. {
  32. "id": 2,
  33. "name": "some_name2",
  34. ...
  35. }
  36. ]
  37. Test:
  38. curl http://localhost/api/v1/groups -v -u #{login}:#{password}
  39. =end
  40. def index
  41. model_index_render(Group, params)
  42. end
  43. =begin
  44. Resource:
  45. GET /api/v1/groups/#{id}
  46. Response:
  47. {
  48. "id": 1,
  49. "name": "name_1",
  50. ...
  51. }
  52. Test:
  53. curl http://localhost/api/v1/groups/#{id} -v -u #{login}:#{password}
  54. =end
  55. def show
  56. model_show_render(Group, params)
  57. end
  58. =begin
  59. Resource:
  60. POST /api/v1/groups
  61. Payload:
  62. {
  63. "name": "some name",
  64. "assignment_timeout": null,
  65. "follow_up_assignment": true,
  66. "follow_up_possible": "yes",
  67. "note":"",
  68. "active":true,
  69. }
  70. Response:
  71. {
  72. "id": 1,
  73. "name": "some_name",
  74. ...
  75. }
  76. Test:
  77. curl http://localhost/api/v1/groups -v -u #{login}:#{password} -H "Content-Type: application/json" -X POST -d '{"name": "some_name","active": true, "note": "some note"}'
  78. =end
  79. def create
  80. model_create_render(Group, params)
  81. end
  82. =begin
  83. Resource:
  84. PUT /api/v1/groups/{id}
  85. Payload:
  86. {
  87. "name": "some name",
  88. "assignment_timeout": null,
  89. "follow_up_assignment": true,
  90. "follow_up_possible": "yes",
  91. "note":"",
  92. "active":true,
  93. }
  94. Response:
  95. {
  96. "id": 1,
  97. "name": "some_name",
  98. ...
  99. }
  100. Test:
  101. curl http://localhost/api/v1/groups -v -u #{login}:#{password} -H "Content-Type: application/json" -X PUT -d '{"name": "some_name","active": true, "note": "some note"}'
  102. =end
  103. def update
  104. model_update_render(Group, params)
  105. end
  106. =begin
  107. Resource:
  108. DELETE /api/v1/groups/{id}
  109. Response:
  110. {}
  111. Test:
  112. curl http://localhost/api/v1/groups/{id} -v -u #{login}:#{password} -H "Content-Type: application/json" -X DELETE -d '{}'
  113. =end
  114. def destroy
  115. model_destroy_render(Group, params)
  116. end
  117. end