Skip to content

Commit

Permalink
chore: rename tokengator-mint -> tokengator
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Apr 6, 2024
1 parent b37c4e7 commit 6aa4a1b
Show file tree
Hide file tree
Showing 413 changed files with 757 additions and 757 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ CLOAK_KEYCHAIN=
# Domains to allow cookies for (comma-separated)
COOKIE_DOMAINS=localhost,127.0.0.1
# URL of the database to connect to
DATABASE_URL="postgresql://tokengator-mint:tokengator-mint@localhost:5432/tokengator-mint?schema=public"
DATABASE_URL="postgresql://tokengator:tokengator@localhost:5432/tokengator?schema=public"
# Enable database provisioning
DATABASE_PROVISION=true
# Enable GraphQL Playground
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
API_URL: http://localhost:3000/api
CLOAK_KEYCHAIN: 'v1.aesgcm256.6e1ba298.pf2UU5kKDxFWNgA6.VoV2c9xUARRchBZiY6iHlCc5'
CLOAK_MASTER_KEY: 'k1.aesgcm256.cs8BOCfbvuH-WwZDwqZ47zcLw0K8OlUGFW1JaXLAd78='
DATABASE_URL: postgresql://tokengator-mint:tokengator-mint@localhost:5432/tokengator-mint?schema=public
DATABASE_URL: postgresql://tokengator:tokengator@localhost:5432/tokengator?schema=public
DATABASE_PROVISION: true
PORT: 3000

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
API_URL: http://localhost:3000/api
CLOAK_KEYCHAIN: 'v1.aesgcm256.6e1ba298.pf2UU5kKDxFWNgA6.VoV2c9xUARRchBZiY6iHlCc5'
CLOAK_MASTER_KEY: 'k1.aesgcm256.cs8BOCfbvuH-WwZDwqZ47zcLw0K8OlUGFW1JaXLAd78='
DATABASE_URL: postgresql://tokengator-mint:tokengator-mint@localhost:5432/tokengator-mint?schema=public
DATABASE_URL: postgresql://tokengator:tokengator@localhost:5432/tokengator?schema=public
DATABASE_PROVISION: true
HOST: 127.0.0.1
JWT_SECRET: 1dfe5003518560c6362eab48f8220edf8708bbc67efbd4ed8cdf621965e938ee
Expand All @@ -24,9 +24,9 @@ jobs:
postgres:
image: postgres:15-alpine
env:
POSTGRES_USER: tokengator-mint
POSTGRES_PASSWORD: tokengator-mint
POSTGRES_DB: tokengator-mint
POSTGRES_USER: tokengator
POSTGRES_PASSWORD: tokengator
POSTGRES_DB: tokengator
ports: ['5432:5432']
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TokenGator Mint
# TokenGator

## Getting Started

Expand All @@ -13,8 +13,8 @@
Clone the repo and install dependencies:

```shell
git clone git@github.com:pubkeyapp/tokengator-mint.git
cd tokengator-mint
git clone git@github.com:pubkeyapp/tokengator.git
cd tokengator
pnpm
```

Expand Down Expand Up @@ -87,7 +87,7 @@ pnpm nx g prisma-model company
Output:

```shell
> NX Generating @tokengator-mint/tools:prisma-model
> NX Generating @tokengator/tools:prisma-model

UPDATE prisma/schema.prisma
```
Expand All @@ -105,7 +105,7 @@ pnpm nx g api-feature company
Output:

```shell
> NX Generating @tokengator-mint/tools:api-feature
> NX Generating @tokengator/tools:api-feature

CREATE libs/api/company/data-access/...
CREATE libs/api/company/feature/...
Expand All @@ -127,7 +127,7 @@ pnpm nx g web-feature company
Output:

```shell
> NX Generating @tokengator-mint/tools:web-feature
> NX Generating @tokengator/tools:web-feature

CREATE libs/web/company/data-access/...
CREATE libs/web/company/feature/...
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-auth-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RegisterInput, UserRole, UserStatus } from '@tokengator-mint/sdk'
import { RegisterInput, UserRole, UserStatus } from '@tokengator/sdk'
import { sdk, uniqueId } from '../support'

describe('api-auth-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-claim-admin-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ClaimAdminCreateInput, ClaimAdminFindManyInput, ClaimAdminUpdateInput, Claim } from '@tokengator-mint/sdk'
import { ClaimAdminCreateInput, ClaimAdminFindManyInput, ClaimAdminUpdateInput, Claim } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-claim-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-claim-user-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ClaimUserCreateInput, ClaimUserFindManyInput, ClaimUserUpdateInput, Claim } from '@tokengator-mint/sdk'
import { ClaimUserCreateInput, ClaimUserFindManyInput, ClaimUserUpdateInput, Claim } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-claim-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-community-admin-feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
AdminFindManyCommunityInput,
AdminUpdateCommunityInput,
Community,
} from '@tokengator-mint/sdk'
} from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-community-feature', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
AdminFindManyCommunityMemberInput,
AdminUpdateCommunityMemberInput,
CommunityMember,
} from '@tokengator-mint/sdk'
} from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-community-member-feature', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
UserFindManyCommunityMemberInput,
UserUpdateCommunityMemberInput,
CommunityMember,
} from '@tokengator-mint/sdk'
} from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-community-member-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-community-user-feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
UserFindManyCommunityInput,
UserUpdateCommunityInput,
Community,
} from '@tokengator-mint/sdk'
} from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-community-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-identity-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IdentityProvider } from '@tokengator-mint/sdk'
import { IdentityProvider } from '@tokengator/sdk'
import * as bs58 from 'bs58'
import { alice, getAliceCookie, getIdentityChallenge, sdk, signMessage } from '../support'
import { breakStringSolana } from '../support/break-string'
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-mint-admin-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AdminCreateMintInput, AdminFindManyMintInput, AdminUpdateMintInput, Mint } from '@tokengator-mint/sdk'
import { AdminCreateMintInput, AdminFindManyMintInput, AdminUpdateMintInput, Mint } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-mint-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-mint-user-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { UserCreateMintInput, UserFindManyMintInput, UserUpdateMintInput, Mint } from '@tokengator-mint/sdk'
import { UserCreateMintInput, UserFindManyMintInput, UserUpdateMintInput, Mint } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-mint-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-preset-admin-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PresetAdminCreateInput, PresetAdminFindManyInput, PresetAdminUpdateInput, Preset } from '@tokengator-mint/sdk'
import { PresetAdminCreateInput, PresetAdminFindManyInput, PresetAdminUpdateInput, Preset } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-preset-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-preset-user-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PresetUserCreateInput, PresetUserFindManyInput, PresetUserUpdateInput, Preset } from '@tokengator-mint/sdk'
import { PresetUserCreateInput, PresetUserFindManyInput, PresetUserUpdateInput, Preset } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-preset-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-price-admin-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PriceAdminCreateInput, PriceAdminFindManyInput, PriceAdminUpdateInput, Price } from '@tokengator-mint/sdk'
import { PriceAdminCreateInput, PriceAdminFindManyInput, PriceAdminUpdateInput, Price } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-price-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-price-user-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PriceUserCreateInput, PriceUserFindManyInput, PriceUserUpdateInput, Price } from '@tokengator-mint/sdk'
import { PriceUserCreateInput, PriceUserFindManyInput, PriceUserUpdateInput, Price } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-price-feature', () => {
Expand Down
4 changes: 2 additions & 2 deletions apps/api-e2e/src/api/api-user-feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import {
User,
UserRole,
UserStatus,
} from '@tokengator-mint/sdk'
} from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

function avatarUrl(name) {
return `https://source.boringavatars.com/pixel/120/tokengator-mint-${name}`
return `https://source.boringavatars.com/pixel/120/tokengator-${name}`
}

describe('api-user-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-wallet-admin-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { WalletAdminCreateInput, WalletAdminFindManyInput, WalletAdminUpdateInput, Wallet } from '@tokengator-mint/sdk'
import { WalletAdminCreateInput, WalletAdminFindManyInput, WalletAdminUpdateInput, Wallet } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-wallet-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/api/api-wallet-user-feature.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { WalletUserCreateInput, WalletUserFindManyInput, WalletUserUpdateInput, Wallet } from '@tokengator-mint/sdk'
import { WalletUserCreateInput, WalletUserFindManyInput, WalletUserUpdateInput, Wallet } from '@tokengator/sdk'
import { getAliceCookie, getBobCookie, sdk, uniqueId } from '../support'

describe('api-wallet-feature', () => {
Expand Down
2 changes: 1 addition & 1 deletion apps/api-e2e/src/support/graphql-sdk.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getGraphQLSdk, IdentityProvider, Sdk } from '@tokengator-mint/sdk'
import { getGraphQLSdk, IdentityProvider, Sdk } from '@tokengator/sdk'
import { Keypair } from '@solana/web3.js'
import * as nacl from 'tweetnacl'
import { getApiUrl } from './get-api.url'
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Module } from '@nestjs/common'
import { ApiCoreFeatureModule } from '@tokengator-mint/api-core-feature'
import { ApiCoreFeatureModule } from '@tokengator/api-core-feature'

@Module({
imports: [ApiCoreFeatureModule],
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Logger } from '@nestjs/common'
import { NestFactory } from '@nestjs/core'
import { ApiCoreService, CORE_APP_STARTED } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService, CORE_APP_STARTED } from '@tokengator/api-core-data-access'
import cookieParser from 'cookie-parser'
import session from 'express-session'
import { exec } from 'node:child_process'
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TokenGator Mint</title>
<title>TokenGator</title>
<script src="/api/__/env.js" charset="utf-8"></script>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { WebCoreFeature } from '@tokengator-mint/web-core-feature'
import { WebCoreFeature } from '@tokengator/web-core-feature'
import { StrictMode } from 'react'
import * as ReactDOM from 'react-dom/client'

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ services:
ports:
- 5432:5432
environment:
POSTGRES_DB: tokengator-mint
POSTGRES_USER: tokengator-mint
POSTGRES_PASSWORD: tokengator-mint
POSTGRES_DB: tokengator
POSTGRES_USER: tokengator
POSTGRES_PASSWORD: tokengator
volumes:
- ./tmp/postgres:/var/lib/postgresql/data
2 changes: 1 addition & 1 deletion libs/anchor/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tokengator-mint/anchor",
"name": "@tokengator/anchor",
"version": "0.0.1",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Module } from '@nestjs/common'
import { JwtModule } from '@nestjs/jwt'
import { PassportModule } from '@nestjs/passport'
import { ApiCoreDataAccessModule, ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreDataAccessModule, ApiCoreService } from '@tokengator/api-core-data-access'
import { ApiAuthService } from './api-auth.service'
import { ApiAuthGraphQLUserGuard } from './guards/api-auth-graphql-user-guard'
import { ApiAuthStrategyJwt } from './strategies/api-auth-strategy-jwt'
Expand Down
2 changes: 1 addition & 1 deletion libs/api/auth/data-access/src/lib/api-auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
hashPassword,
slugifyId,
validatePassword,
} from '@tokengator-mint/api-core-data-access'
} from '@tokengator/api-core-data-access'
import { Response } from 'express-serve-static-core'
import { LoginInput } from './dto/login.input'
import { RegisterInput } from './dto/register.input'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable, UnauthorizedException } from '@nestjs/common'
import { PassportStrategy } from '@nestjs/passport'
import { UserStatus } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'
import { Request } from 'express-serve-static-core'
import { Strategy } from 'passport-jwt'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Injectable, Logger } from '@nestjs/common'
import { IdentityProvider, Prisma, UserRole, UserStatus } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'

import type { ApiAuthRequest } from '../interfaces/api-auth.request'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type DynamicModule, Logger, Module } from '@nestjs/common'
import { ApiCoreDataAccessModule } from '@tokengator-mint/api-core-data-access'
import { ApiCoreDataAccessModule } from '@tokengator/api-core-data-access'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
import { ApiAuthStrategyDiscord } from './api-auth-strategy-discord'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common'
import { AuthGuard, PassportStrategy } from '@nestjs/passport'
import { IdentityProvider } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'
import { Profile, Strategy } from 'passport-discord'
import type { ApiAuthRequest } from '../../interfaces/api-auth.request'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type DynamicModule, Logger, Module } from '@nestjs/common'
import { ApiCoreDataAccessModule } from '@tokengator-mint/api-core-data-access'
import { ApiCoreDataAccessModule } from '@tokengator/api-core-data-access'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
import { ApiAuthStrategyGithub } from './api-auth-strategy-github'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common'
import { AuthGuard, PassportStrategy } from '@nestjs/passport'
import { IdentityProvider } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'
import { Profile, Strategy } from 'passport-github'
import type { ApiAuthRequest } from '../../interfaces/api-auth.request'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type DynamicModule, Logger, Module } from '@nestjs/common'
import { ApiCoreDataAccessModule } from '@tokengator-mint/api-core-data-access'
import { ApiCoreDataAccessModule } from '@tokengator/api-core-data-access'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
import { ApiAuthStrategyGoogle } from './api-auth-strategy-google'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common'
import { AuthGuard, PassportStrategy } from '@nestjs/passport'
import { IdentityProvider } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'
import { Profile, Strategy } from 'passport-google-oauth20'
import type { ApiAuthRequest } from '../../interfaces/api-auth.request'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type DynamicModule, Logger, Module } from '@nestjs/common'
import { ApiCoreDataAccessModule } from '@tokengator-mint/api-core-data-access'
import { ApiCoreDataAccessModule } from '@tokengator/api-core-data-access'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
import { ApiAuthStrategyTwitter } from './api-auth-strategy-twitter'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Injectable } from '@nestjs/common'
import { AuthGuard, PassportStrategy } from '@nestjs/passport'
import { IdentityProvider } from '@prisma/client'
import { ApiCoreService } from '@tokengator-mint/api-core-data-access'
import { ApiCoreService } from '@tokengator/api-core-data-access'
import { Profile, Strategy } from 'passport-twitter'
import type { ApiAuthRequest } from '../../interfaces/api-auth.request'
import { ApiAuthStrategyService } from '../api-auth-strategy.service'
Expand Down
2 changes: 1 addition & 1 deletion libs/api/auth/feature/src/lib/api-auth-feature.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Module } from '@nestjs/common'
import { ApiAuthDataAccessModule } from '@tokengator-mint/api-auth-data-access'
import { ApiAuthDataAccessModule } from '@tokengator/api-auth-data-access'
import { ApiAuthStrategyDiscordController } from './api-auth-strategy-discord.controller'
import { ApiAuthStrategyGithubController } from './api-auth-strategy-github.controller'
import { ApiAuthStrategyGoogleController } from './api-auth-strategy-google.controller'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ApiAuthRequest,
ApiAuthService,
ApiAuthStrategyDiscordGuard,
} from '@tokengator-mint/api-auth-data-access'
} from '@tokengator/api-auth-data-access'
import { Response } from 'express-serve-static-core'

@Controller('auth/discord')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ApiAuthRequest,
ApiAuthService,
ApiAuthStrategyGithubGuard,
} from '@tokengator-mint/api-auth-data-access'
} from '@tokengator/api-auth-data-access'
import { Response } from 'express-serve-static-core'

@Controller('auth/github')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ApiAuthRequest,
ApiAuthService,
ApiAuthStrategyGoogleGuard,
} from '@tokengator-mint/api-auth-data-access'
} from '@tokengator/api-auth-data-access'
import { Response } from 'express-serve-static-core'

@Controller('auth/google')
Expand Down
Loading

0 comments on commit 6aa4a1b

Please sign in to comment.