feat: add PATCH request support, expand PATCH /users/@me, serialize enums correctly
This commit is contained in:
parent
d6c9345dba
commit
e95e0a79ff
20 changed files with 427 additions and 48 deletions
12
STYLE.md
Normal file
12
STYLE.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Code style
|
||||
|
||||
## C# code style
|
||||
|
||||
Code should be formatted with `dotnet format` or Rider's built-in formatter.
|
||||
Variables should *always* be declared using `var`, unless the correct type
|
||||
can't be inferred from the declaration (i.e. if the variable needs to be an
|
||||
`IEnumerable<T>` instead of a `List<T>`, or if a variable is initialized as `null`).
|
||||
|
||||
## TypeScript code style
|
||||
|
||||
Use `prettier` for formatting the frontend code.
|
Loading…
Add table
Add a link
Reference in a new issue