diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-11-19 09:47:28 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-11-19 09:47:28 +0700 |
| commit | 89cea36b17daef28d6ee9f57a6a0f4658493e799 (patch) | |
| tree | 26f51b5390fbd6f98f278d3176d20cfa2814de50 /indoteknik_api/controllers/api_v1 | |
| parent | 9d7433af4ff86d2b212965e646eb0461bf3729e9 (diff) | |
Fix bug conflict function name manufacture
Diffstat (limited to 'indoteknik_api/controllers/api_v1')
| -rw-r--r-- | indoteknik_api/controllers/api_v1/manufacture.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_api/controllers/api_v1/manufacture.py b/indoteknik_api/controllers/api_v1/manufacture.py index 5b9d57b2..544113f2 100644 --- a/indoteknik_api/controllers/api_v1/manufacture.py +++ b/indoteknik_api/controllers/api_v1/manufacture.py @@ -32,7 +32,7 @@ class Manufacture(controller.Controller): return self.response(data) @http.route(prefix + 'manufacture/<id>', auth='public', methods=['GET', 'OPTIONS']) - def get_manufacture(self, **kw): + def get_manufacture_by_id(self, **kw): if not self.authenticate(): return self.response(code=401, description='Unauthorized') |
