This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
修复错误的默认 ACL 规则,之前是:
```
{allow, {username, "^dashboard?"}, subscribe, ["$SYS/#"]}.
但执行正则表达式的匹配应该使用 `{re, "^dashboard$"}`:
{allow, {username, {re, "^dashboard$"}}, subscribe, ["$SYS/#"]}.