Loading .dockerignore +3 −1 Original line number Diff line number Diff line Loading @@ -22,3 +22,5 @@ npm-debug.log* yarn-error.log* scripts packages No newline at end of file .gitlab-ci.yml +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 Loading .yarnrc.yml +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/" backend/prisma/migrations/20260717163527_add_rft_session/migration.sql 0 → 100644 +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") ); backend/prisma/schema.prisma +10 −0 Original line number Diff line number Diff line Loading @@ -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
.dockerignore +3 −1 Original line number Diff line number Diff line Loading @@ -22,3 +22,5 @@ npm-debug.log* yarn-error.log* scripts packages No newline at end of file
.gitlab-ci.yml +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 Loading
.yarnrc.yml +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/"
backend/prisma/migrations/20260717163527_add_rft_session/migration.sql 0 → 100644 +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") );
backend/prisma/schema.prisma +10 −0 Original line number Diff line number Diff line Loading @@ -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