- Adds the ability to create MRs to the plugin - Adds the ability to jump to specific discussions/notes in the browser - Fixes stale icons - Adds debug keybinding for discussion tree for developers
14 lines
186 B
Lua
14 lines
186 B
Lua
local job = require("gitlab.job")
|
|
|
|
local M = {}
|
|
|
|
M.approve = function()
|
|
job.run_job("/mr/approve", "POST")
|
|
end
|
|
|
|
M.revoke = function()
|
|
job.run_job("/mr/revoke", "POST")
|
|
end
|
|
|
|
return M
|