Files
einundzwanzig-verein/routes/api.php
HolgerHatGarKeineNode 34f8d949d5 Add NIP-05 handle management: Introduce migration, API route, and Livewire updates to support NIP-05 handle verification.
 Enhance Nostr fetcher: Refactor profile data merging logic for improved efficiency and accuracy.
🛠
2026-01-20 13:56:50 +01:00

9 lines
247 B
PHP

<?php
use App\Http\Controllers\Api\GetPaidMembers;
use App\Http\Controllers\Api\Nostr\GetProfile;
use Illuminate\Support\Facades\Route;
Route::get('/nostr/profile/{key}', GetProfile::class);
Route::get('/members/{year}', GetPaidMembers::class);