bug fixes

This commit is contained in:
Gowtham Sai 2022-08-04 13:22:16 +05:30
parent 3115efa9eb
commit 1054bd4232
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class PlacementApplicationSerializer(serializers.ModelSerializer):
return data
def get_resume_link(self, obj):
ele = {'link': LINK_TO_STORAGE_RESUME + urllib.parse.quote(obj.id + "/" + obj.resume), 'name': obj.resume}
ele = {'link': LINK_TO_STORAGE_RESUME + urllib.parse.quote(str(obj.student.roll_no) + "/" + obj.resume), 'name': obj.resume}
return ele
class Meta: