fixes
This commit is contained in:
parent
9645ac7337
commit
443b03accb
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ const serverOptions = (mainHandler: Main): ServerOptions => {
|
||||||
MetricsAuthGuard: metricsAuth,
|
MetricsAuthGuard: metricsAuth,
|
||||||
AppAuthGuard: async (authHeader) => { return { app_id: mainHandler.applicationManager.DecodeAppToken(stripBearer(authHeader)) } },
|
AppAuthGuard: async (authHeader) => { return { app_id: mainHandler.applicationManager.DecodeAppToken(stripBearer(authHeader)) } },
|
||||||
UserAuthGuard: async (authHeader) => { return mainHandler.appUserManager.DecodeUserToken(stripBearer(authHeader)) },
|
UserAuthGuard: async (authHeader) => { return mainHandler.appUserManager.DecodeUserToken(stripBearer(authHeader)) },
|
||||||
GuestWithPubAuthGuard: async (_) => ({ pub: "", app_id: "" }),
|
GuestWithPubAuthGuard: async (_) => { throw new Error("Nostr only route") },
|
||||||
GuestAuthGuard: async (_) => ({}),
|
GuestAuthGuard: async (_) => ({}),
|
||||||
metricsCallback: metrics => mainHandler.settings.recordPerformance ? mainHandler.metricsManager.AddMetrics(metrics) : null,
|
metricsCallback: metrics => mainHandler.settings.recordPerformance ? mainHandler.metricsManager.AddMetrics(metrics) : null,
|
||||||
allowCors: true,
|
allowCors: true,
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@ export default class {
|
||||||
|
|
||||||
async AddInviteToken(app: Application, sats?: number) {
|
async AddInviteToken(app: Application, sats?: number) {
|
||||||
return this.txQueue.PushToQueue({
|
return this.txQueue.PushToQueue({
|
||||||
dbTx: true,
|
dbTx: false,
|
||||||
exec:async tx => {
|
exec:async tx => {
|
||||||
const inviteRepo = tx.getRepository(InviteToken);
|
const inviteRepo = tx.getRepository(InviteToken);
|
||||||
const newInviteToken = inviteRepo.create({
|
const newInviteToken = inviteRepo.create({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue