Skip to content

Commit

Permalink
Set the creatorUid to ANDROID-CloudTAK-${user.email} when creating …
Browse files Browse the repository at this point in the history
…missions
  • Loading branch information
brian7704 committed Dec 11, 2024
1 parent 8974c04 commit 051adcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/routes/marti-mission.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default async function router(schema: Schema, config: Config) {

const mission = await api.Mission.create(req.params.name, {
...req.body,
creatorUid: user.email
creatorUid: `ANDROID-CloudTAK-${user.email}`
});

res.json(mission);
Expand Down

0 comments on commit 051adcb

Please sign in to comment.