thecore_auth_commons 3.5.15 → 3.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/thecore_auth_commons/version.rb +1 -1
- metadata +1 -2
- data/app/models/concerns/endpoints/ldap_server.rb +0 -78
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49ccc0fa60ea85fb2d2103c6261456ed41204c781b690825806f69afb5b00e2d
|
|
4
|
+
data.tar.gz: 5c5c77ac399a1de3cd8293c26a90b967faa7e7523fdfe8f0265582a0cf5ae0f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 654d430f31013d2a9eb301fa9603a6df1724b4fa7a2cb1278e35dbf5c700382755a5e7efeefd821eb200b4e4742b2702aaaff1e7e7557acb01537670280535e1
|
|
7
|
+
data.tar.gz: 10ef109bea4588955cac1d2ed2dc2965cbce72a06270a8ad7d5fde7e63ea84f9379276751174edf6384a86d633ff9d30bf1606346fdb28255878a4a8d133d953
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thecore_auth_commons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gabriele Tassoni
|
|
@@ -268,7 +268,6 @@ files:
|
|
|
268
268
|
- app/jobs/background_ldap_import_job.rb
|
|
269
269
|
- app/models/action.rb
|
|
270
270
|
- app/models/concerns/api/ldap_server.rb
|
|
271
|
-
- app/models/concerns/endpoints/ldap_server.rb
|
|
272
271
|
- app/models/concerns/rails_admin/ldap_server.rb
|
|
273
272
|
- app/models/ldap_server.rb
|
|
274
273
|
- app/models/permission.rb
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
class Endpoints::LdapServer < NonCrudEndpoints
|
|
2
|
-
# self.desc 'LdapServer', :test, {
|
|
3
|
-
# # Define the action name using openapi swagger format
|
|
4
|
-
# get: {
|
|
5
|
-
# summary: "Test API Custom Action",
|
|
6
|
-
# description: "This is a test API custom action",
|
|
7
|
-
# operationId: "test",
|
|
8
|
-
# tags: ["Test"],
|
|
9
|
-
# parameters: [
|
|
10
|
-
# {
|
|
11
|
-
# name: "explain",
|
|
12
|
-
# in: "query",
|
|
13
|
-
# description: "Explain the action by returning this openapi schema",
|
|
14
|
-
# required: true,
|
|
15
|
-
# schema: {
|
|
16
|
-
# type: "boolean"
|
|
17
|
-
# }
|
|
18
|
-
# }
|
|
19
|
-
# ],
|
|
20
|
-
# responses: {
|
|
21
|
-
# 200 => {
|
|
22
|
-
# description: "The openAPI json schema for this action",
|
|
23
|
-
# content: {
|
|
24
|
-
# "application/json": {
|
|
25
|
-
# schema: {
|
|
26
|
-
# type: "object",
|
|
27
|
-
# additionalProperties: true
|
|
28
|
-
# }
|
|
29
|
-
# }
|
|
30
|
-
# }
|
|
31
|
-
# },
|
|
32
|
-
# 501 => {
|
|
33
|
-
# error: :string,
|
|
34
|
-
# }
|
|
35
|
-
# }
|
|
36
|
-
# },
|
|
37
|
-
# post: {
|
|
38
|
-
# summary: "Test API Custom Action",
|
|
39
|
-
# description: "This is a test API custom action",
|
|
40
|
-
# operationId: "test",
|
|
41
|
-
# tags: ["Test"],
|
|
42
|
-
# requestBody: {
|
|
43
|
-
# required: true,
|
|
44
|
-
# content: {
|
|
45
|
-
# "application/json": {}
|
|
46
|
-
# }
|
|
47
|
-
# },
|
|
48
|
-
# responses: {
|
|
49
|
-
# 200 => {
|
|
50
|
-
# description: "The openAPI json schema for this action",
|
|
51
|
-
# # This will return the object with a message string and a params object
|
|
52
|
-
# content: {
|
|
53
|
-
# "application/json": {
|
|
54
|
-
# schema: {
|
|
55
|
-
# type: "object",
|
|
56
|
-
# properties: {
|
|
57
|
-
# message: {
|
|
58
|
-
# type: "string"
|
|
59
|
-
# },
|
|
60
|
-
# params: {
|
|
61
|
-
# type: "object",
|
|
62
|
-
# additionalProperties: true
|
|
63
|
-
# }
|
|
64
|
-
# }
|
|
65
|
-
# }
|
|
66
|
-
# }
|
|
67
|
-
# }
|
|
68
|
-
# },
|
|
69
|
-
# 501 => {
|
|
70
|
-
# error: :string,
|
|
71
|
-
# }
|
|
72
|
-
# }
|
|
73
|
-
# }
|
|
74
|
-
# }
|
|
75
|
-
# def test(params)
|
|
76
|
-
# return { message: "Hello World From Test API Custom Action called test", params: params }, 200
|
|
77
|
-
# end
|
|
78
|
-
end
|