Opened 9 years ago

Closed 9 years ago

#1026 closed defect (fixed)

Inbox links and url points to feed (outbox) addresses

Reported by: Jonas Haraldsson Owned by:
Priority: major Milestone:
Component: programming Keywords: api, inbox, links
Cc: Jessica Tallon Parent Tickets:

Description

Inbox links and url points to feed (outbox) addresses.

Current:

u'links': {u'first': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/feed'},
  u'next': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/feed'},
  u'prev': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/feed'},
  u'self': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'}},
 u'objectTypes': [u'activity'],
 u'totalItems': 2,
 u'url': u'http://mediagoblin.jonash.local/api/user/kabniel/feed'}

Expected:

u'links': {u'first': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'},
  u'next': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'},
  u'prev': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'},
  u'self': {u'href': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'}},
 u'url': u'http://mediagoblin.jonash.local/api/user/kabniel/inbox'}

Change History (3)

comment:1 by Jessica Tallon, 9 years ago

Resolution: fixed
Status: newclosed

This has mostly been fixed as of f269875.

The inbox isn't _actually_ the inbox as we currently don't have a way to represent the inbox however it will list all the media on the instance for now.

comment:2 by JanKusanagi, 9 years ago

Cc: Jessica Tallon added
Resolution: fixed
Status: closedaccepted

Reminder: "cloned" feeds: /feed/major and /feed/minor pointing to the same as /feed are still missing ;)

Version 0, edited 9 years ago by JanKusanagi (next)

comment:3 by JanKusanagi, 9 years ago

Resolution: fixed
Status: acceptedclosed

Setting as 'fixed' again; Tsyesika created a new, proper issue for the major/minor thing.

Note: See TracTickets for help on using tickets.