mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(irc): manually re-process announces (#1419)
* fix(releases): add manual processing * feat(irc): add re-process button to channel msg * feat(irc): add missing client method * feat(web): change reprocess icon placement --------- Co-authored-by: martylukyy <35452459+martylukyy@users.noreply.github.com>
This commit is contained in:
parent
d9fc163655
commit
be05ffba73
15 changed files with 306 additions and 18 deletions
|
@ -94,6 +94,14 @@ type ChannelHealth struct {
|
|||
LastAnnounce time.Time `json:"last_announce"`
|
||||
}
|
||||
|
||||
type IRCManualProcessRequest struct {
|
||||
NetworkId int64 `json:"-"`
|
||||
Server string `json:"server"`
|
||||
Channel string `json:"channel"`
|
||||
Nick string `json:"nick"`
|
||||
Message string `json:"msg"`
|
||||
}
|
||||
|
||||
type SendIrcCmdRequest struct {
|
||||
NetworkId int64 `json:"network_id"`
|
||||
Server string `json:"server"`
|
||||
|
|
|
@ -270,6 +270,12 @@ type ReleaseActionRetryReq struct {
|
|||
ActionId int
|
||||
}
|
||||
|
||||
type ReleaseProcessReq struct {
|
||||
IndexerIdentifier string `json:"indexer_identifier"`
|
||||
IndexerImplementation string `json:"indexer_implementation"`
|
||||
AnnounceLines []string `json:"announce_lines"`
|
||||
}
|
||||
|
||||
type GetReleaseRequest struct {
|
||||
Id int
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue