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:
2025-10-30 11:43:06 -05:00
parent 0ce353ea9d
commit 91d52d2de5
1692 changed files with 202851 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
import {BasePanel} from './BasePanel.js?v=2';
import {
renderPhone,
renderDefaultIfEmptyElement,
renderFullCountry,
renderPhoneCarrierName,
renderPhoneType,
renderUserCounter,
renderBoolean,
renderUsersList,
} from '../DataRenderers.js?v=2';
export class PhonePanel extends BasePanel {
constructor() {
let eventParams = {
enrichment: true,
type: 'phone',
url: '/admin/phoneDetails',
cardId: 'phone-card',
panelClosed: 'phonePanelClosed',
closePanel: 'closePhonePanel',
rowClicked: 'phoneTableRowClicked',
};
super(eventParams);
}
proceedData(data) {
const phone_record = {
phonenumber: data.phone_number,
country_id: data.country_id,
country_iso: data.country_iso,
full_country: data.full_country,
carrier_name: data.carrier_name,
type: data.type
};
data.phone_number = renderPhone(phone_record);
data.phone_national = renderDefaultIfEmptyElement(data.national_format);
data.country = renderFullCountry(data.full_country);
data.carrier_name = renderPhoneCarrierName(phone_record);
data.type = renderPhoneType(phone_record);
data.shared = renderUserCounter(data.shared, 2);
// to 'No Profiles'
//data.profiles = renderBoolean(data.profiles === null ? null : data.profiles === 0);
data.fraud_detected = renderBoolean(data.fraud_detected);
data.invalid = renderBoolean(data.invalid);
// TODO: return alert_list back in next release
//data.alert_list = renderBoolean(data.alert_list);
data.shared_users = renderUsersList(data.shared_users);
// also data.checked is used
return data;
}
}