Git Product home page Git Product logo

Comments (2)

wahyubucil avatar wahyubucil commented on May 24, 2024

May I see your config/auth.ts? I think you forgot to remove the import statement on the config. Because it's not recommended to use Prisma and Lucid at the same time.

from adonis-prisma.

alexnascimentoti avatar alexnascimentoti commented on May 24, 2024

/**

  • Config source: https://git.io/JY0mp
  • Feel free to let us know via PR, if you find something broken in this config
  • file.
    */

import { AuthConfig } from '@IOC:Adonis/Addons/Auth'

/*
Authentication Mapping
--------------------------------------------------------------------------

|
| List of available authentication mapping. You must first define them
| inside the contracts/auth.ts file before mentioning them here.
|
/
const authConfig: AuthConfig = {
guard: 'api',
guards: {
/

|--------------------------------------------------------------------------
| OAT Guard
|--------------------------------------------------------------------------
|
| OAT (Opaque access tokens) guard uses database backed tokens to authenticate
| HTTP request. This guard DOES NOT rely on sessions or cookies and uses
| Authorization header value for authentication.
|
| Use this guard to authenticate mobile apps or web clients that cannot rely
| on cookies/sessions.
|
*/
api: {
driver: 'oat',

  /*
  |--------------------------------------------------------------------------
  | Tokens provider
  |--------------------------------------------------------------------------
  |
  | Uses SQL database for managing tokens. Use the "database" driver, when
  | tokens are the secondary mode of authentication.
  | For example: The Github personal tokens
  |
  | The foreignKey column is used to make the relationship between the user
  | and the token. You are free to use any column name here.
  |
  */
  tokenProvider: {
    type: 'api',
    driver: 'database',
    table: 'api_tokens',
    foreignKey: 'user_id',
  },

  provider: {
    driver: 'prisma',
    identifierKey: 'id',
    uids: ['email'],
    model: 'user',
  },
},

},
}

export default authConfig

from adonis-prisma.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.