feat(cloudron): add tirreno package artifacts
- Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/ directory and its contents - Includes package manifest, Dockerfile, source code, documentation, and build artifacts - Add tirreno-1761840148.tar.gz as a build artifact - Add tirreno-cloudron-package-1761841304.tar.gz as the Cloudron package - Include all necessary files for the tirreno Cloudron package This adds the complete tirreno Cloudron package artifacts to the repository.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import {ApiPage} from '../pages/Api.js';
|
||||
|
||||
new ApiPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {BlacklistPage} from '../pages/Blacklist.js';
|
||||
|
||||
new BlacklistPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {BotPage} from '../pages/Bot.js';
|
||||
|
||||
new BotPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {BotsPage} from '../pages/Bots.js';
|
||||
|
||||
new BotsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {CountriesPage} from '../pages/Countries.js';
|
||||
|
||||
new CountriesPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {CountryPage} from '../pages/Country.js';
|
||||
|
||||
new CountryPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {DashboardPage} from '../pages/Dashboard.js';
|
||||
|
||||
new DashboardPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {DomainPage} from '../pages/Domain.js';
|
||||
|
||||
new DomainPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {DomainsPage} from '../pages/Domains.js';
|
||||
|
||||
new DomainsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {EventsPage} from '../pages/Events.js';
|
||||
|
||||
new EventsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {IpPage} from '../pages/Ip.js';
|
||||
|
||||
new IpPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {IpsPage} from '../pages/Ips.js';
|
||||
|
||||
new IpsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {IspPage} from '../pages/Isp.js';
|
||||
|
||||
new IspPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {IspsPage} from '../pages/Isps.js';
|
||||
|
||||
new IspsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {LogbookPage} from '../pages/Logbook.js';
|
||||
|
||||
new LogbookPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {ManualCheckPage} from '../pages/ManualCheck.js';
|
||||
|
||||
new ManualCheckPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {ResourcePage} from '../pages/Resource.js';
|
||||
|
||||
new ResourcePage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {ResourcesPage} from '../pages/Resources.js';
|
||||
|
||||
new ResourcesPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {ReviewQueuePage} from '../pages/ReviewQueue.js';
|
||||
|
||||
new ReviewQueuePage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {RulesPage} from '../pages/Rules.js';
|
||||
|
||||
new RulesPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {SettingsPage} from '../pages/Settings.js';
|
||||
|
||||
new SettingsPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {UserPage} from '../pages/User.js';
|
||||
|
||||
new UserPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {UsersPage} from '../pages/Users.js';
|
||||
|
||||
new UsersPage();
|
||||
@@ -0,0 +1,3 @@
|
||||
import {WatchlistPage} from '../pages/Watchlist.js';
|
||||
|
||||
new WatchlistPage();
|
||||
@@ -0,0 +1,20 @@
|
||||
(function() {
|
||||
const emulateButtonClick = () => {
|
||||
let button = document.getElementById('submit-button');
|
||||
|
||||
button.classList.add('clicked');
|
||||
button.click();
|
||||
|
||||
setTimeout(() => {
|
||||
button.classList.remove('clicked');
|
||||
}, 200);
|
||||
};
|
||||
|
||||
const onEnterKeyDown = e => {
|
||||
if (e.keyCode === 13) {
|
||||
emulateButtonClick();
|
||||
}
|
||||
};
|
||||
|
||||
document.addEventListener('keydown', onEnterKeyDown, false);
|
||||
})();
|
||||
Reference in New Issue
Block a user