mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-28 07:43:18 +00:00
⚡ Enhance Nostr fetcher: Refactor profile data merging logic for improved efficiency and accuracy.
🛠
9 lines
247 B
PHP
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);
|