b5e932d78b
Joomla: Repo Health / Access control (push) Has been cancelled
Joomla: Update Server / Update updates.xml (push) Has been cancelled
Joomla: Repo Health / Release configuration (push) Has been cancelled
Joomla: Repo Health / Scripts governance (push) Has been cancelled
Joomla: Repo Health / Repository health (push) Has been cancelled
Uri::root() returns the current request domain, so redirecting from an alias to Uri::root()/administrator redirects back to the alias. Added primary_domain field to Site Aliases tab and getPrimaryHost() method that checks: plugin setting → $live_site → alias exclusion fallback. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
333 B
PowerShell
11 lines
333 B
PowerShell
# MokoWaaS PowerShell Profile
|
|
# Source this with: . ./profile.ps1
|
|
|
|
$env:MokoWaaS_ROOT = $PSScriptRoot
|
|
|
|
function mo { Set-Location $PSScriptRoot }
|
|
function mo-src { Set-Location (Join-Path $PSScriptRoot 'src') }
|
|
|
|
Write-Host "MokoWaaS profile loaded" -ForegroundColor Cyan
|
|
Write-Host " Navigate: mo, mo-src" -ForegroundColor DarkGray
|