-
Notifications
You must be signed in to change notification settings - Fork 228
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added SPDX license identifiers to .vue, .ts, and .py files #1083
Added SPDX license identifiers to .vue, .ts, and .py files #1083
Conversation
✅ Deploy Preview for activist-org ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Thank you for the pull request!The activist team will do our best to address your contribution as soon as we can. The following is a checklist for maintainers to make sure this process goes as well as possible. Feel free to address the points below yourself in further commits if you realize that actions are needed :) If you're not already a member of our public Matrix community, please consider joining! We'd suggest using Element as your Matrix client, and definitely join the General and Development rooms once you're in. Also consider joining our bi-weekly Saturday dev syncs. It'd be great to have you! Maintainer checklist
|
hopefully i have made the correct changes |
I'll write a check for it and we can see if all's well, @Mahendradoak :) Thanks for the contribution! |
…oject corresponding styles for each type of files such as for .py it is //SPDX-License-Identifier: AGPL-3.0-or-later and so on Signed-off-by: Suzana <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for the changes here, @Mahendradoak! Great to have the project be more compliant moving forward 😊🥳
Contributor checklist
Description
This pull request adds SPDX license identifiers to all
.vue
,.ts
, and.py
files in the project as required by the issue description. The identifiers added are:.vue
files:<!-- SPDX-License-Identifier: AGPL-3.0-or-later -->
.ts
files:// SPDX-License-Identifier: AGPL-3.0-or-later
.py
files:# SPDX-License-Identifier: AGPL-3.0-or-later
These changes ensure that each file complies with the licensing requirements.
I verified the changes by reviewing each modified file to ensure the correct identifier was added and ran the necessary tests as described in the project's contributing guide to confirm that the project continues to function as expected. I ran the frontend and backend tests using the project's testing scripts to ensure no existing functionality was affected.