Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
guildenstern70 committed Sep 13, 2023
1 parent fce5a85 commit cf205e4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"importMap": "./import_map.json",
"tasks": {
"start": "deno run --allow-net --allow-env --allow-read src/main.ts"
"start": "deno run --allow-net --allow-env --allow-read --unstable src/main.ts"
}
}

1 change: 0 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@
#
#

export FAUNA_SECRET=your_fauna_secret
deno task start
2 changes: 1 addition & 1 deletion src/controller/rest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default class RestRouter extends Router
ctx.response.body = {message: "Missing user name."};
return;
}
const deleted = await this.denokv.deleteUser(username);
await this.denokv.deleteUser(username);
ctx.response.body = {message: "OK - Deleted user " + username};
ctx.response.status = 200;
};
Expand Down

0 comments on commit cf205e4

Please sign in to comment.