()
| 32 | |
| 33 | @staticmethod |
| 34 | def get_config_fields() -> List[ConfigField]: |
| 35 | return [ |
| 36 | ConfigField(label="Gitlab URL", name="url", input_type=HTMLInputType.TEXT, |
| 37 | placeholder="https://gitlab.com"), |
| 38 | ConfigField(label="API Access Token", name="access_token", input_type=HTMLInputType.PASSWORD), |
| 39 | ] |
| 40 | |
| 41 | @staticmethod |
| 42 | async def validate_config(config: Dict) -> None: |
nothing calls this directly
no test coverage detected