diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml deleted file mode 100644 index a42cfdd..0000000 --- a/.github/workflows/node.js.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs - -name: Node.js CI - -on: - push: - branches: [ "master" ] - -jobs: - build: - - runs-on: self-hosted - - strategy: - matrix: - node-version: [20.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - env: - DATABASE_URL: ${{secrets.DATABASE_URL}} - NEXTAUTH_SECRET: ${{secrets.NEXTAUTH_SECRET}} - CLOUDINARY_URL: ${{secrets.CLOUDINARY_URL}} - NEXTAUTH_URL: ${{secrets.NEXTAUTH_URL}} - GOOGLE_APP_PASSWORD: ${{secrets.GOOGLE_APP_PASSWORD}} - GOOGLE_EMAIL: ${{secrets.GOOGLE_EMAIL}} - steps: - - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: installing dependencies - run: npm ci - - name: building website - run: npm run build --if-present diff --git a/src/middleware.ts b/src/middleware.ts index cb4a70f..d7e9912 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -7,7 +7,7 @@ export default withAuth(function middleware(req) {}, { const pathname = req.nextUrl.pathname; const unauthorizedConditions = (pathname.startsWith("/admin") && token?.role !== "ADMIN") || - (pathname.startsWith("/juri") && token?.role !== "JURI"); + (pathname.startsWith("/dashboard") && token?.role !== "USER"); // Return true if there is no unauthorized conditions met return !unauthorizedConditions;