@bobfrankston/miscassists 1.0.18 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jserve.js +1 -1
- package/jserve.js.map +1 -1
- package/jserve.ts +2 -1
- package/package.json +1 -1
package/jserve.js
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
// Note that a client entry is
|
|
4
4
|
// name or pfx:name so you can say "ui:useful"
|
|
5
5
|
// * means deafult so you can /subpapp rather than /subapp/name
|
|
6
|
-
export const jprivs = ["admin", "user", "guest"];
|
|
6
|
+
export const jprivs = ["admin", "user", "guest", "bbs"];
|
|
7
7
|
//# sourceMappingURL=jserve.js.map
|
package/jserve.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jserve.js","sourceRoot":"","sources":["jserve.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,uEAAuE;AAEvE,8BAA8B;AAC9B,gDAAgD;AAChD,iEAAiE;AAEjE,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"jserve.js","sourceRoot":"","sources":["jserve.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,uEAAuE;AAEvE,8BAA8B;AAC9B,gDAAgD;AAChD,iEAAiE;AAEjE,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,CAAC"}
|
package/jserve.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
// name or pfx:name so you can say "ui:useful"
|
|
7
7
|
// * means deafult so you can /subpapp rather than /subapp/name
|
|
8
8
|
|
|
9
|
-
export const jprivs = ["admin", "user", "guest"];
|
|
9
|
+
export const jprivs = ["admin", "user", "guest", "bbs"];
|
|
10
10
|
export type jpriv = typeof jprivs[number];
|
|
11
11
|
|
|
12
12
|
// export type jpriv = "admin" | "user" | "guest";
|
|
@@ -16,4 +16,5 @@ export interface jSubSiteInfo {
|
|
|
16
16
|
AppInit?: () => Promise<void>
|
|
17
17
|
subClients?: string[]; // Dirname or path to html file
|
|
18
18
|
privs?: jpriv[];
|
|
19
|
+
localLogin?: boolean; // If true, use local login. Allow remember?
|
|
19
20
|
}
|