config.json 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "form": [
  3. {
  4. "title": "是否启用",
  5. "key": "auth_request_on",
  6. "required": false,
  7. "type": "switch",
  8. "cascade": {
  9. "true": [
  10. {
  11. "title": "auth_request_uri",
  12. "key": "auth_request_uri",
  13. "type": "string",
  14. "placeholder": "输入鉴权的路由",
  15. "width": 382
  16. }
  17. ]
  18. }
  19. },
  20. {
  21. "title": "auth_request_set",
  22. "key": "auth_request_set",
  23. "required": false,
  24. "type": "array",
  25. "items": [
  26. {
  27. "key": "name",
  28. "title": "变量",
  29. "type": "string",
  30. "width": 120
  31. },
  32. {
  33. "key": "value",
  34. "title": "变量值",
  35. "type": "string",
  36. "width": 200
  37. }
  38. ],
  39. "description": "Sets the request variable to the given value after the authorization request completes. The value may contain variables from the authorization request, such as $upstream_http_*."
  40. }
  41. ]
  42. }