Skip to content

Commit

Permalink
Merge pull request #26 from aplbrain/25-change-link-to-documentation
Browse files Browse the repository at this point in the history
25 change link to documentation
  • Loading branch information
NEStock authored Mar 4, 2025
2 parents b937f24 + 6401146 commit e0d4467
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dandiapi/api/tests/test_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def test_user_registration_email_content(
assert len(mailoutbox) == 2

email = mailoutbox[0]
assert email.subject == f'DANDI: New user registered: {user.email}'
assert email.subject == f'EMBER-DANDI: New user registered: {user.email}'
assert email.to == [ADMIN_EMAIL, user.email]
assert '<p>' not in email.body
assert all(len(_) < 100 for _ in email.body.splitlines())

email = mailoutbox[1]
assert email.subject == f'DANDI: Review new user: {user.username}'
assert email.subject == f'EMBER-DANDI: Review new user: {user.username}'
assert email.to == [ADMIN_EMAIL]
assert '<p>' not in email.body
assert all(len(_) < 100 for _ in email.body.splitlines())
Expand Down
2 changes: 1 addition & 1 deletion web/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const dandiUrl = 'https://dandiarchive.org';
const emberHomeUrl = 'https://emberarchive.org';
const emberAboutUrl = 'https://emberarchive.org/about';
const emberGitHubUrl = 'https://github.com/aplbrain/dandi-archive';
const dandiDocumentationUrl = 'https://docs.dandiarchive.org/10_using_dandi/';
const dandiDocumentationUrl = 'https://emberarchive.org/documentation'; // TODO: Link aplbrain/dandi-docs deployment instead when ready
const dandiHelpUrl = 'https://github.com/dandi/helpdesk/issues/new/choose';
const dandihubUrl = 'https://hub.dandiarchive.org/';

Expand Down

0 comments on commit e0d4467

Please sign in to comment.