diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-01-06 13:52:16 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-01-06 13:52:16 +0700 |
| commit | 4ec4ac493afa31409754d93c0640d48774c9ff9a (patch) | |
| tree | b5f3be994c845f7a14fc676260ecdfef638c4ab7 | |
| parent | 46956837111c3233434f3cd22444b55d38fadc6a (diff) | |
rename method get content videos
| -rw-r--r-- | indoteknik_api/controllers/api_v1/content.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/content.py b/indoteknik_api/controllers/api_v1/content.py index bc19c6f3..7d0bd762 100644 --- a/indoteknik_api/controllers/api_v1/content.py +++ b/indoteknik_api/controllers/api_v1/content.py @@ -7,7 +7,7 @@ class WebsiteContent(controller.Controller): prefix = '/api/v1/' @http.route(prefix + 'video_content', auth='public', methods=['GET', 'OPTIONS']) - def get_customer_review(self, **kw): + def get_video_content(self, **kw): if not self.authenticate(): return self.response(code=401, description='Unauthorized') # base_url = request.env['ir.config_parameter'].get_param('web.base.url') |
