File tree Expand file tree Collapse file tree 6 files changed +504
-80
lines changed Expand file tree Collapse file tree 6 files changed +504
-80
lines changed Original file line number Diff line number Diff line change 87
87
"security" : []
88
88
}
89
89
},
90
+ "/apis/v1beta1/auth/token" : {
91
+ "post" : {
92
+ "operationId" : " IsValidToken" ,
93
+ "responses" : {
94
+ "200" : {
95
+ "description" : " A successful response." ,
96
+ "schema" : {
97
+ "$ref" : " #/definitions/IsValidTokenResponse"
98
+ }
99
+ },
100
+ "default" : {
101
+ "description" : " An unexpected error response" ,
102
+ "schema" : {
103
+ "$ref" : " #/definitions/grpc.gateway.runtime.Error"
104
+ }
105
+ }
106
+ },
107
+ "parameters" : [
108
+ {
109
+ "name" : " body" ,
110
+ "in" : " body" ,
111
+ "required" : true ,
112
+ "schema" : {
113
+ "$ref" : " #/definitions/IsValidTokenRequest"
114
+ }
115
+ }
116
+ ],
117
+ "tags" : [
118
+ " AuthService"
119
+ ]
120
+ }
121
+ },
90
122
"/apis/v1beta1/config" : {
91
123
"get" : {
92
124
"operationId" : " GetConfig" ,
3041
3073
}
3042
3074
}
3043
3075
},
3076
+ "IsValidTokenRequest" : {
3077
+ "type" : " object" ,
3078
+ "properties" : {
3079
+ "username" : {
3080
+ "type" : " string"
3081
+ },
3082
+ "token" : {
3083
+ "type" : " string"
3084
+ }
3085
+ }
3086
+ },
3087
+ "IsValidTokenResponse" : {
3088
+ "type" : " object" ,
3089
+ "properties" : {
3090
+ "domain" : {
3091
+ "type" : " string"
3092
+ },
3093
+ "token" : {
3094
+ "type" : " string"
3095
+ },
3096
+ "username" : {
3097
+ "type" : " string"
3098
+ }
3099
+ }
3100
+ },
3044
3101
"KeyValue" : {
3045
3102
"type" : " object" ,
3046
3103
"properties" : {
You can’t perform that action at this time.
0 commit comments