Create a response with HTTP status code 410 - GONE.
(errormsg='')
| 151 | |
| 152 | |
| 153 | def gone(errormsg=''): |
| 154 | """Create a response with HTTP status code 410 - GONE.""" |
| 155 | return make_json_response( |
| 156 | status=410, |
| 157 | success=0, |
| 158 | errormsg=errormsg |
| 159 | ) |
| 160 | |
| 161 | |
| 162 | def not_implemented(errormsg=_('Not implemented.'), info='', |
no test coverage detected