Add Activity id if missing
This commit is contained in:
parent
edb61e52c5
commit
92828028db
|
@ -1,7 +1,16 @@
|
|||
export default (x: any) => Object.assign({
|
||||
import config from '../../../config';
|
||||
import * as uuid from 'uuid';
|
||||
|
||||
export default (x: any) => {
|
||||
if (x !== null && typeof x === 'object' && x.id == null) {
|
||||
x.id = `${config.url}/${uuid.v4()}`;
|
||||
}
|
||||
|
||||
return Object.assign({
|
||||
'@context': [
|
||||
'https://www.w3.org/ns/activitystreams',
|
||||
'https://w3id.org/security/v1',
|
||||
{ Hashtag: 'as:Hashtag' }
|
||||
]
|
||||
}, x);
|
||||
}, x);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue