Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (265 - 267 of 1173)

Ticket Resolution Summary Owner Reporter
#1064 fixed API lacking major and minor feed Jessica Tallon
Description

Currently the API only has the /api/user/<username>/feed endpoint and not the /api/user/<username>/feed/major and /api/user/<username>/feed/minor. We should have those feeds and do the same filtering that we do on the major and minor inbox feeds.

#1069 fixed API doesn't support deleting media Jessica Tallon
Description

In pump.io you can delete media by performing a "delete" activity:

{
    "verb": "delete",
    "object": {
        "id": "https://gmg.theperplexingpariah.co.uk/api/image/myid"
    }
}

You can also do this by sending a HTTP DELETE to the API endpoint.

#1074 duplicate Upload audio to GNU MediaGoblin via the API Jessica Tallon
Description

Currently it's not possible to upload audio to GNU MediaGoblin via the API, this would be very useful. Activity Streams 1.0 does support audio they should look something like:

{
    "id": "https://gmg.site.tld/api/audio/someid",
    "objectType": "audio",
    "displayName": "Title of this audio",
    "embedCode": "<html><to><embed></embed></to></html>",
    "stream": {
        "url": "https://gmg.site.tld/path/to/audio.ogg",
    },
    "author": {
        "id": "acct:someone@gmg.site.tld",
        ...
    },
    "url": "https://gmg.site.tld/html/version/for/users/click"
}

Pump.io does look like it is able to store audio, they have the model which is here. This defines:

They also have all the usual properties possible on a object and can be interacted as such (liking, commenting, etc.)

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.