Commit 7ecae515 authored by Grant's avatar Grant
Browse files

RFT Lemmy UI

parent 5c8d430f
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -22,3 +22,5 @@ npm-debug.log*
yarn-error.log*

scripts

packages
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
include:
  - local: .gitlab/ci/federation_test.yml
  - local: packages/rft-lemmy/.gitlab-ci.yml
  - component: sc07.dev/sc07/ci/todo-check@main
    inputs:
      comment_token_var: CI_COMMENT_TOKEN
+3 −2
Original line number Diff line number Diff line
nodeLinker: node-modules

npmScopes:
  sc07:
    npmRegistryServer: https://sc07.dev/api/v4/groups/3/-/packages/npm/
    npmRegistryServer: "https://sc07.dev/api/v4/groups/3/-/packages/npm/"
  sc07-fedify:
    npmRegistryServer: https://sc07.dev/api/v4/projects/82/packages/npm/
 No newline at end of file
    npmRegistryServer: "https://sc07.dev/api/v4/projects/82/packages/npm/"
+11 −0
Original line number Diff line number Diff line
-- CreateTable
CREATE TABLE "RFTSession" (
    "id" TEXT NOT NULL,
    "interactionId" TEXT,
    "ipAddress" TEXT NOT NULL,
    "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
    "updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
    "expiresAt" TIMESTAMP(3) NOT NULL,

    CONSTRAINT "RFTSession_pkey" PRIMARY KEY ("id")
);
+10 −0
Original line number Diff line number Diff line
@@ -71,3 +71,13 @@ model SidecarSession {
  updatedAt DateTime @default(now()) @updatedAt
  expiresAt DateTime
}

model RFTSession {
  id String @id @default(uuid())
  interactionId String?
  ipAddress String

  createdAt DateTime @default(now())
  updatedAt DateTime @default(now()) @updatedAt
  expiresAt DateTime
}
 No newline at end of file
Loading