This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client"; | |
| import React, { useState, useEffect } from "react"; | |
| const ScreenSize = () => { | |
| // Ekran boyutunu tutacak state | |
| const [screenSize, setScreenSize] = useState(""); | |
| // Ekran boyutunu kontrol eden fonksiyon | |
| const updateScreenSize = () => { | |
| const width = window.innerWidth; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="tr"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Fenerbahçe Basketbol Altyapı Seçmeleri Sonucu</title> | |
| </head> | |
| <body style="margin: 0; font-family: Arial, Helvetica, sans-serif; background-color: #002b5c; color: white; padding: 20px;"> | |
| <table width="100%" cellpadding="0" cellspacing="0" style="max-width: 600px; margin: 0 auto; background-color: #002b5c;"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="tr"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Fenerbahçe Basketbol Altyapı Seçmeleri Sonucu - İkinci Aşama</title> | |
| </head> | |
| <body style="margin: 0; font-family: Arial, Helvetica, sans-serif; background-color: #002b5c; color: white; padding: 20px;"> | |
| <table width="100%" cellpadding="0" cellspacing="0" style="max-width: 600px; margin: 0 auto; background-color: #002b5c;"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3.7" | |
| volumes: | |
| tiledesk-datadb: | |
| services: | |
| dashboard: | |
| image: buraxtaa/tiledesk-dashboard-custom:latest | |
| container_name: dashboard | |
| restart: always | |
| ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public async Task<ServiceResult<List<SIPOutboundTrunkInfo>>> GetOutboundTrunksAsync() | |
| { | |
| if (!await _permissionChecker.HasPermissionAsync(PermissionConstants.Trunk.List)) | |
| { | |
| return ServiceResult<List<SIPOutboundTrunkInfo>>.Fail("Trunk listeleme yetkiniz yok."); | |
| } | |
| var tenantKey = _tenantProvider.GetTenantKey(); | |
| // --- YENİ EKLENECEK TRY-CATCH --- |
Server log kayıtlarını sorunlu (boş array) ve sorunusuz response alma durumuna göre inceledim, inceleme sonucunu sizlerle paylaşıyorum.
Bu testte, tcpdump çıktısında (saat 13:03:48) şunları görüyoruz:
backend'denlivekit'e giden isteğin kendisi:13:03:48.096833 IP localhost.42468 > localhost.pss: Flags [P.]... POST /twirp/livekit.SIP/ListSIPOutboundTrunk HTTP/1.1
Host: livekit.enmdigital.com
Sorunun kaynağı backend response yapısıyla ilgili görünüyor.
- Mevcut response sadece şu özetleri sağlıyor:
categoryMap: Ana kategori -> toplam adetsubCategoryMap: Alt kategori -> toplam adet (global)subCategorySentiment: Alt kategori -> sentiment (global)
- Kategoriye-özel alt kategori dağılımı olmadığı için:
- Aynı alt kategori adı birden fazla ana kategoride kullanıldığında, global
subCategoryMaptoplaması bazı kategorilerde üst toplamı aşabiliyor. - Bazı kayıtlarda alt kategori boş/harici olduğunda, üst toplam alt toplamlardan büyük kalıyor.
- Aynı alt kategori adı birden fazla ana kategoride kullanıldığında, global
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const badgeDefinitions = [ | |
| { | |
| id: 'golden-quality', | |
| name: 'Altın Kalite Rozeti', | |
| description: 'Aylık ortalama kalite puanı ≥93', | |
| icon: IconTrophy, | |
| color: '#FFD700', | |
| bgColor: 'rgba(255, 215, 0, 0.1)', | |
| check: (data, allChannelData, vendorAgentStatistic) => { | |
| return data.totalPointMean >= 93; |