Files
dokku/plugins/domains/domains-add
Jose Diaz-Gonzalez 61a306664f refactor: move domain manipulation into triggers
This allows other plugins to avoid understanding the underlying details of how domains might be integrated with.
2020-05-06 00:16:51 -04:00

15 lines
321 B
Bash
Executable File

#!/usr/bin/env bash
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
trigger-domains-domains-add() {
declare desc="adds a domain to an app"
declare trigger="domains-add"
declare APP="$1" DOMAIN="$2"
domains_add "$APP" "$DOMAIN"
}
trigger-domains-domains-add "$@"