mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
New: Add headers setting in webhook connection
(cherry picked from commit 78fb20282de73c0ea47375895a807235385d90e3) Closes #5242
This commit is contained in:
parent
396b2ae7c1
commit
739019498f
15 changed files with 237 additions and 291 deletions
|
@ -1,3 +1,10 @@
|
|||
export type InputChanged<T = unknown> = {
|
||||
name: string;
|
||||
value: T;
|
||||
};
|
||||
|
||||
export type InputOnChange<T> = (change: InputChanged<T>) => void;
|
||||
|
||||
export type CheckInputChanged = {
|
||||
name: string;
|
||||
value: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue