altnames in domain table? #7
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It looks like the domains table may be wrong.
It should be that if a request comes in for
bar.example.com
and the certificate subject isexample.com
and has altnamesfoobar.dev
and*.example.com
, then the list I should get back isexample.com,foobar.dev,*.example.com
.Therefore I think that the Domain model should have a
subject
and analtname
(or maybename
andgroup
).When the record is found I should get back the full list of all records that have the same subject as the currently queried domain.
Oh, it looks like that was prep-work for the
approveDomains
and is unrelated to the store plugin's core functionality.