-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.roborev.toml
More file actions
17 lines (15 loc) · 772 Bytes
/
.roborev.toml
File metadata and controls
17 lines (15 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[review]
guidelines = """
middleman is a local-first, single-user tool that binds to loopback
(127.0.0.1) by default. There is no multi-user authentication or
session management by design. All API endpoints -- including mutation
endpoints like merge, approve, comment, close, and reopen -- share the
same trust model: the user who started the server is the only intended
consumer.
Do not flag the absence of request-level authentication, authorization,
or CSRF protection on API endpoints. This is an intentional architectural
decision, not a missing feature.
The root-level middleman package (middleman.go) is the embedding API.
It does not have a stable API and can be changed arbitrarily until it
stabilizes. Do not flag breaking changes to its exported surface.
"""