-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2475 from arunmathaisk/mkp-fix
feat(marketplace): Change marketplace app GitHub repository visibility
- Loading branch information
Showing
3 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...ess/report/marketplace_app_repository_visibility/marketplace_app_repository_visibility.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{% extends "templates/emails/base.html" %} | ||
|
||
{% block content %} | ||
<div class="p-8 bg-white"> | ||
<div class="from-markdown"> | ||
<p>Hi {{ developer_name }},</p> | ||
|
||
<p>I hope this email finds you well.</p> | ||
|
||
<p>I'm writing to inform you about an important policy update regarding Frappe Cloud Marketplace Apps. To | ||
ensure continued availability on the Marketplace, all apps are now required to be fully open-source, meaning | ||
the GitHub repository must be made public.</p> | ||
|
||
<p>To comply with this new policy, please make your app's repository public within the next 2 weeks. After this | ||
period, non-compliant apps will be disabled or removed from the Frappe Cloud Marketplace.</p> | ||
|
||
<p>Here are the details for your app:</p> | ||
|
||
<ul> | ||
<li><strong>App Name:</strong> {{ app_name }}</li> | ||
<li><strong>Repository URL:</strong> {{ repository_url }}</li> | ||
<li><strong>Branch:</strong> {{ branch }}</li> | ||
<li><strong>Version:</strong> {{ version }}</li> | ||
</ul> | ||
|
||
<p>We understand that this change might require some adjustments, and we appreciate your prompt attention to | ||
this | ||
matter. If you have any questions or anticipate any challenges in making your repository public, please | ||
don't | ||
hesitate to reach out to [email protected]. We're here to help and ensure a smooth transition.</p> | ||
|
||
<p>Thank you for your understanding and cooperation.</p> | ||
|
||
<p>Regards,<br> | ||
Arun Mathai<br> | ||
Engineer @Frappe Cloud</p> | ||
</div> | ||
</div> | ||
{% endblock %} |