2022-12-16 00:36:33 +00:00
|
|
|
import type { DatabaseOptions } from "@/types/configuration/database-options";
|
|
|
|
|
|
|
|
export const constituteMongoURI = ({ username, password, host, port, database }: DatabaseOptions) => {
|
|
|
|
const dbConnection = `mongodb://${username}:${password}@${host}:${port}`;
|
2023-04-19 11:05:03 +00:00
|
|
|
|
2022-12-16 00:36:33 +00:00
|
|
|
return database ? `${dbConnection}/${database}` : dbConnection;
|
|
|
|
};
|