mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-01 04:00:40 +00:00
fbfa5a33ed
This should fully implement #1221 by modifying the API and adding two new properties to the result. The `sendUrl` property denotes if the URL is sent and `url` is included when required. Client side checks have been implemented in order to only show a link when the URL is vaugely correct. I.e not "" or "https://". This prevents the link from being included if the monitor type is not HTTP without having to publicly expose the monitor type. The exposure of the URL is configuarable for each monitor on each status page by clicking on the link icon. Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com>
5 lines
196 B
SQL
5 lines
196 B
SQL
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
|
|
BEGIN TRANSACTION;
|
|
ALTER TABLE monitor_group
|
|
ADD send_url BOOLEAN DEFAULT 0 NOT NULL;
|
|
COMMIT;
|