server: Fix missing .js import for rows file

This commit is contained in:
Elian Doran
2024-07-24 20:19:27 +03:00
parent f382d3c728
commit 76fcea7189
35 changed files with 35 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ import utils from "../../../services/utils.js";
import AbstractShacaEntity from "./abstract_shaca_entity.js";
import SNote from "./snote.js";
import { Blob } from '../../../services/blob-interface';
import { SAttachmentRow } from './rows';
import { SAttachmentRow } from './rows.js';
class SAttachment extends AbstractShacaEntity {
private attachmentId: string;

View File

@@ -1,7 +1,7 @@
"use strict";
import AbstractShacaEntity from "./abstract_shaca_entity";
import { SAttributeRow } from "./rows";
import { SAttributeRow } from "./rows.js";
import SNote from "./snote.js";
class SAttribute extends AbstractShacaEntity {

View File

@@ -1,7 +1,7 @@
"use strict";
import AbstractShacaEntity from "./abstract_shaca_entity.js";
import { SBranchRow } from './rows';
import { SBranchRow } from './rows.js';
import SNote from "./snote.js";
class SBranch extends AbstractShacaEntity {

View File

@@ -8,7 +8,7 @@ import { Blob } from '../../../services/blob-interface';
import SAttachment from "./sattachment.js";
import SAttribute from "./sattribute.js";
import SBranch from "./sbranch.js";
import { SNoteRow } from './rows';
import { SNoteRow } from './rows.js';
const LABEL = 'label';
const RELATION = 'relation';

View File

@@ -9,7 +9,7 @@ import SAttribute from "./entities/sattribute.js";
import SAttachment from "./entities/sattachment.js";
import shareRoot from "../share_root.js";
import eventService from "../../services/events.js";
import { SAttachmentRow, SAttributeRow, SBranchRow, SNoteRow } from './entities/rows';
import { SAttachmentRow, SAttributeRow, SBranchRow, SNoteRow } from './entities/rows.js';
function load() {
const start = Date.now();