We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 215d4de commit f68b416Copy full SHA for f68b416
Dockerfile
@@ -33,6 +33,8 @@ WORKDIR /data
33
34
ADD package.json .
35
ADD *.lock .
36
+RUN mkdir ./templates
37
+COPY ./templates/* ./templates
38
39
RUN apt clean -y \
40
&& apt update -y \
src/management/identities/_schemas/_parts/inetOrgPerson.part.ts
@@ -21,7 +21,7 @@ export class inetOrgPerson extends Document {
21
@Prop({ type: String, default: null })
22
public mail?: string;
23
24
- @Prop({ type: String, default: null })
+ @Prop({ type: String, default: "" })
25
public mobile?: string;
26
27
0 commit comments