full path in user-based remote id

This commit is contained in:
Mouse Reeve 2021-02-04 10:48:56 -08:00
parent 582ebc0fe3
commit d633826a20

View file

@ -27,7 +27,7 @@ class BookWyrmModel(models.Model):
''' generate a url that resolves to the local object ''' ''' generate a url that resolves to the local object '''
base_path = 'https://%s' % DOMAIN base_path = 'https://%s' % DOMAIN
if hasattr(self, 'user'): if hasattr(self, 'user'):
base_path = self.user.local_path base_path = '%s/%s' % (base_path, self.user.local_path)
model_name = type(self).__name__.lower() model_name = type(self).__name__.lower()
return '%s/%s/%d' % (base_path, model_name, self.id) return '%s/%s/%d' % (base_path, model_name, self.id)