(view_func)
| 50 | def _required_auth_level_decorator(required_auth_level): |
| 51 | |
| 52 | def decorator(view_func): |
| 53 | view_func.required_auth_level = required_auth_level |
| 54 | return view_func |
| 55 | |
| 56 | return decorator |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected