(self, app)
| 16 | super().__init__(*args, **kwargs) |
| 17 | |
| 18 | def init_app(self, app): |
| 19 | super().init_app(app) |
| 20 | self._pg_csrf_exempt(app) |
| 21 | |
| 22 | def _pg_csrf_exempt(self, app): |
| 23 | """Exempt some of the Views/blueprints from CSRF protection |
no test coverage detected