mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
loopd: add suggestions endpoints to macaroons
This commit is contained in:
parent
04af7f8bfc
commit
ad2b37e709
1 changed files with 18 additions and 0 deletions
|
|
@ -80,6 +80,18 @@ var (
|
|||
Entity: "auth",
|
||||
Action: "read",
|
||||
}},
|
||||
"/looprpc.SwapClient/SuggestSwaps": {{
|
||||
Entity: "suggestions",
|
||||
Action: "read",
|
||||
}},
|
||||
"/looprpc.SwapClient/GetLiquidityParams": {{
|
||||
Entity: "suggestions",
|
||||
Action: "read",
|
||||
}},
|
||||
"/looprpc.SwapClient/SetLiquidityParams": {{
|
||||
Entity: "suggestions",
|
||||
Action: "write",
|
||||
}},
|
||||
}
|
||||
|
||||
// allPermissions is the list of all existing permissions that exist
|
||||
|
|
@ -104,6 +116,12 @@ var (
|
|||
}, {
|
||||
Entity: "auth",
|
||||
Action: "read",
|
||||
}, {
|
||||
Entity: "suggestions",
|
||||
Action: "read",
|
||||
}, {
|
||||
Entity: "suggestions",
|
||||
Action: "write",
|
||||
}}
|
||||
|
||||
// macDbDefaultPw is the default encryption password used to encrypt the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue