Skip to content

Commit

Permalink
W3C compliance - Use forms instead of links in Properties, Actions, a…
Browse files Browse the repository at this point in the history
…nd Events (#2811)

* Use forms instead of links in Properties, Actions, and Events

fixes #2806

Co-authored-by: Ben Francis <[email protected]>
  • Loading branch information
relu91 and benfrancis authored Oct 13, 2021
1 parent 78423ff commit 45e0015
Show file tree
Hide file tree
Showing 21 changed files with 22,752 additions and 260 deletions.
22,340 changes: 22,296 additions & 44 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"express-rate-limit": "^5.2.6",
"express-ws": "^4.0.0",
"find": "^0.3.0",
"gateway-addon": "^1.0.1-alpha.1",
"gateway-addon": "^2.0.0-alpha.1",
"glob-to-regexp": "^0.4.1",
"http-proxy": "^1.18.1",
"ip-regex": "^4.3.0",
Expand Down
6 changes: 6 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ export enum LogSeverity {
PROMPT = 4,
}

export enum WoTOperation {
READ_ALL_PROPERTIES = 'readallproperties',
SUBSCRIBE_ALL_EVENTS = 'subscribeallevents',
UNSUBSCRIBE_ALL_EVENTS = 'unsubscribeallevents',
QUERY_ALL_ACTIONS = 'queryallactions',
}
export interface LogMessage {
severity: LogSeverity;
message: string;
Expand Down
Loading

0 comments on commit 45e0015

Please sign in to comment.