Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions app/lib/frontend/templates/views/publisher/create_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,20 @@ d.Node createPublisherPageNode({
d.i(text: 'public contact email'),
d.text(' of the publisher (you can change this later).'),
]),
d.p(
children: [
d.text(
'Note: packages are not transferred automatically to the publisher. '
'After you create a verified publisher, you can transfer your '
'packages to the publisher following '),
d.a(
href:
'https://dart.dev/tools/pub/publishing#transferring-a-package-to-a-verified-publisher',
text: 'this guide',
),
d.text('.'),
],
),
d.p(text: 'As a member of the publisher you can:'),
d.ul(children: [
d.li(children: [
Expand Down
5 changes: 5 additions & 0 deletions app/test/frontend/golden/create_publisher_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,11 @@ <h2>Create a verified publisher</h2>
<i>public contact email</i>
of the publisher (you can change this later).
</p>
<p>
Note: packages are not transferred automatically to the publisher. After you create a verified publisher, you can transfer your packages to the publisher following
<a href="https://dart.dev/tools/pub/publishing#transferring-a-package-to-a-verified-publisher">this guide</a>
.
</p>
<p>As a member of the publisher you can:</p>
<ul>
<li>
Expand Down
4 changes: 3 additions & 1 deletion pkg/web_app/lib/src/admin_pages.dart
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,9 @@ class _CreatePublisherWidget {
fn: () async {
await api_client.client.createPublisher(publisherId);
},
successMessage: text('Publisher created. The page will reload.'),
successMessage: text(
'Publisher created. You can now transfer packages to this publisher. '
'The page will reload.'),
onSuccess: (_) {
window.location.pathname = '/publishers/$publisherId/admin';
},
Expand Down