Configure remote database connection and update documentation
This commit is contained in:
13
backend/dist/modules/messages/entities/message.entity.d.ts
vendored
Normal file
13
backend/dist/modules/messages/entities/message.entity.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
import { User } from '../../users/entities/user.entity';
|
||||
import { Conversation } from '../../conversations/entities/conversation.entity';
|
||||
export declare class Message {
|
||||
id: string;
|
||||
content: string;
|
||||
sender: User;
|
||||
conversation: Conversation;
|
||||
isRead: boolean;
|
||||
isEdited: boolean;
|
||||
editedAt?: Date;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
78
backend/dist/modules/messages/entities/message.entity.js
vendored
Normal file
78
backend/dist/modules/messages/entities/message.entity.js
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
"use strict";
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Message = void 0;
|
||||
const graphql_1 = require("@nestjs/graphql");
|
||||
const typeorm_1 = require("typeorm");
|
||||
const user_entity_1 = require("../../users/entities/user.entity");
|
||||
const conversation_entity_1 = require("../../conversations/entities/conversation.entity");
|
||||
let Message = class Message {
|
||||
id;
|
||||
content;
|
||||
sender;
|
||||
conversation;
|
||||
isRead;
|
||||
isEdited;
|
||||
editedAt;
|
||||
createdAt;
|
||||
updatedAt;
|
||||
};
|
||||
exports.Message = Message;
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => graphql_1.ID),
|
||||
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
||||
__metadata("design:type", String)
|
||||
], Message.prototype, "id", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(),
|
||||
(0, typeorm_1.Column)('text'),
|
||||
__metadata("design:type", String)
|
||||
], Message.prototype, "content", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => user_entity_1.User),
|
||||
(0, typeorm_1.ManyToOne)(() => user_entity_1.User, user => user.messages),
|
||||
__metadata("design:type", user_entity_1.User)
|
||||
], Message.prototype, "sender", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => conversation_entity_1.Conversation),
|
||||
(0, typeorm_1.ManyToOne)(() => conversation_entity_1.Conversation, conversation => conversation.messages),
|
||||
__metadata("design:type", conversation_entity_1.Conversation)
|
||||
], Message.prototype, "conversation", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => Boolean),
|
||||
(0, typeorm_1.Column)({ default: false }),
|
||||
__metadata("design:type", Boolean)
|
||||
], Message.prototype, "isRead", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => Boolean),
|
||||
(0, typeorm_1.Column)({ default: false }),
|
||||
__metadata("design:type", Boolean)
|
||||
], Message.prototype, "isEdited", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => Date, { nullable: true }),
|
||||
(0, typeorm_1.Column)({ nullable: true }),
|
||||
__metadata("design:type", Date)
|
||||
], Message.prototype, "editedAt", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => Date),
|
||||
(0, typeorm_1.CreateDateColumn)(),
|
||||
__metadata("design:type", Date)
|
||||
], Message.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
(0, graphql_1.Field)(() => Date),
|
||||
(0, typeorm_1.UpdateDateColumn)(),
|
||||
__metadata("design:type", Date)
|
||||
], Message.prototype, "updatedAt", void 0);
|
||||
exports.Message = Message = __decorate([
|
||||
(0, graphql_1.ObjectType)(),
|
||||
(0, typeorm_1.Entity)('messages')
|
||||
], Message);
|
||||
//# sourceMappingURL=message.entity.js.map
|
1
backend/dist/modules/messages/entities/message.entity.js.map
vendored
Normal file
1
backend/dist/modules/messages/entities/message.entity.js.map
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"message.entity.js","sourceRoot":"","sources":["../../../../src/modules/messages/entities/message.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAwD;AACxD,qCAAgH;AAChH,kEAAwD;AACxD,0FAAgF;AAIzE,IAAM,OAAO,GAAb,MAAM,OAAO;IAGlB,EAAE,CAAS;IAIX,OAAO,CAAS;IAIhB,MAAM,CAAO;IAIb,YAAY,CAAe;IAI3B,MAAM,CAAU;IAIhB,QAAQ,CAAU;IAIlB,QAAQ,CAAQ;IAIhB,SAAS,CAAO;IAIhB,SAAS,CAAO;CACjB,CAAA;AApCY,0BAAO;AAGlB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,YAAE,CAAC;IACf,IAAA,gCAAsB,EAAC,MAAM,CAAC;;mCACpB;AAIX;IAFC,IAAA,eAAK,GAAE;IACP,IAAA,gBAAM,EAAC,MAAM,CAAC;;wCACC;AAIhB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,kBAAI,CAAC;IACjB,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC;8BACrC,kBAAI;uCAAC;AAIb;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,kCAAY,CAAC;IACzB,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kCAAY,EAAE,YAAY,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC;8BACvD,kCAAY;6CAAC;AAI3B;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;IACpB,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;uCACX;AAIhB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;IACpB,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;yCACT;AAIlB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACrC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAChB,IAAI;yCAAC;AAIhB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IACjB,IAAA,0BAAgB,GAAE;8BACR,IAAI;0CAAC;AAIhB;IAFC,IAAA,eAAK,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IACjB,IAAA,0BAAgB,GAAE;8BACR,IAAI;0CAAC;kBAnCL,OAAO;IAFnB,IAAA,oBAAU,GAAE;IACZ,IAAA,gBAAM,EAAC,UAAU,CAAC;GACN,OAAO,CAoCnB"}
|
Reference in New Issue
Block a user