Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/dist/src/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"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); }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; Object.defineProperty(exports, "__esModule", { value: true }); exports.AppController = void 0; const common_1 = require("@nestjs/common"); const path_1 = require("path"); const config_1 = require("@nestjs/config"); let AppController = class AppController { constructor(configService) { this.configService = configService; } servePrivacyPolicy(res) { return res.sendFile((0, path_1.join)(process.cwd(), "public/privacy-policy.html")); } getHello(res) { return res.sendFile((0, path_1.join)(process.cwd(), "public/home.html")); } }; __decorate([ (0, common_1.Get)("privacy-policy"), __param(0, (0, common_1.Res)()), __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", void 0) ], AppController.prototype, "servePrivacyPolicy", null); __decorate([ (0, common_1.Get)(), __param(0, (0, common_1.Res)()), __metadata("design:type", Function), __metadata("design:paramtypes", [Object]), __metadata("design:returntype", String) ], AppController.prototype, "getHello", null); AppController = __decorate([ (0, common_1.Controller)(), __metadata("design:paramtypes", [config_1.ConfigService]) ], AppController); exports.AppController = AppController; //# sourceMappingURL=app.controller.js.map