diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bdb487c6d..d537d2a6d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -10,10 +10,10 @@ This indicates that the contribution is made pursuant to the [Developer Certific
## License information
-New **code files** should include a [short-form SPDX ID](https://spdx.org/ids) at the top, indicating the project license for code, which is AGPL-3.0-or-later. This should look like the following:
+New **code files** should include a [short-form SPDX ID](https://spdx.org/ids) at the top, indicating the project license for code, which is MIT. This should look like the following:
```
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
```
New **documentation files** should include a [short-form SPDX ID](https://spdx.org/ids) at the top, indicating the project license for code, which is CC-BY-4.0. This should look like the following:
diff --git a/LICENSE-code.txt b/LICENSE-code.txt
index be3f7b28e..a935cb221 100644
--- a/LICENSE-code.txt
+++ b/LICENSE-code.txt
@@ -1,661 +1,18 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
+Copyright The Linux Foundation and each contributor to CommunityBridge.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
index 7534d6bb3..3a6a3c69e 100644
--- a/README.md
+++ b/README.md
@@ -44,10 +44,8 @@ CLA frontend consists of three independent SPA build with
Copyright The Linux Foundation and each contributor to CommunityBridge.
-This project’s source code is licensed under the GNU Affero General
-Public License, either version 3 or (at your option) any later version
-(AGPL-3.0-or-later). A copy of the license is available in LICENSE-
-code.txt.
+This project’s source code is licensed under the MIT License. A copy of the
+license is available in LICENSE-code.txt.
This project’s documentation is licensed under the Creative Commons Attribution
4.0 International License (CC-BY-4.0). A copy of the license is available in
diff --git a/cla-backend-go/auth/auth0.go b/cla-backend-go/auth/auth0.go
index 94f728b7c..badb33d54 100644
--- a/cla-backend-go/auth/auth0.go
+++ b/cla-backend-go/auth/auth0.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package auth
diff --git a/cla-backend-go/auth/authorizer.go b/cla-backend-go/auth/authorizer.go
index c465cefac..9897a85cd 100644
--- a/cla-backend-go/auth/authorizer.go
+++ b/cla-backend-go/auth/authorizer.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package auth
diff --git a/cla-backend-go/cmd/root.go b/cla-backend-go/cmd/root.go
index 17c27d0c2..ebc87701e 100644
--- a/cla-backend-go/cmd/root.go
+++ b/cla-backend-go/cmd/root.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package cmd
diff --git a/cla-backend-go/cmd/server.go b/cla-backend-go/cmd/server.go
index 9b74dfb05..58d1078d0 100644
--- a/cla-backend-go/cmd/server.go
+++ b/cla-backend-go/cmd/server.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package cmd
diff --git a/cla-backend-go/cmd/server_aws_lambda.go b/cla-backend-go/cmd/server_aws_lambda.go
index 2c45cf22f..47bebe325 100644
--- a/cla-backend-go/cmd/server_aws_lambda.go
+++ b/cla-backend-go/cmd/server_aws_lambda.go
@@ -1,7 +1,7 @@
// +build aws_lambda
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package cmd
diff --git a/cla-backend-go/cmd/server_standalone.go b/cla-backend-go/cmd/server_standalone.go
index 450aa8745..1653d8b89 100644
--- a/cla-backend-go/cmd/server_standalone.go
+++ b/cla-backend-go/cmd/server_standalone.go
@@ -1,7 +1,7 @@
// +build !aws_lambda
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package cmd
diff --git a/cla-backend-go/config/config.go b/cla-backend-go/config/config.go
index 2d9fbcc95..e884332c7 100644
--- a/cla-backend-go/config/config.go
+++ b/cla-backend-go/config/config.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package config
diff --git a/cla-backend-go/config/local.go b/cla-backend-go/config/local.go
index aaf7d13f3..fdb5578da 100644
--- a/cla-backend-go/config/local.go
+++ b/cla-backend-go/config/local.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package config
diff --git a/cla-backend-go/config/ssm.go b/cla-backend-go/config/ssm.go
index 8afb3e4ee..a51a893f1 100644
--- a/cla-backend-go/config/ssm.go
+++ b/cla-backend-go/config/ssm.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package config
diff --git a/cla-backend-go/contractgroup/handlers.go b/cla-backend-go/contractgroup/handlers.go
index f50497763..da118b391 100644
--- a/cla-backend-go/contractgroup/handlers.go
+++ b/cla-backend-go/contractgroup/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package contractgroup
diff --git a/cla-backend-go/contractgroup/repository.go b/cla-backend-go/contractgroup/repository.go
index 9aab14458..5e3c87af7 100644
--- a/cla-backend-go/contractgroup/repository.go
+++ b/cla-backend-go/contractgroup/repository.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package contractgroup
diff --git a/cla-backend-go/contractgroup/service.go b/cla-backend-go/contractgroup/service.go
index b1e04e820..5e817dfb1 100644
--- a/cla-backend-go/contractgroup/service.go
+++ b/cla-backend-go/contractgroup/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package contractgroup
diff --git a/cla-backend-go/docraptor/client.go b/cla-backend-go/docraptor/client.go
index 6e0a69626..e60aac350 100644
--- a/cla-backend-go/docraptor/client.go
+++ b/cla-backend-go/docraptor/client.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package docraptor
diff --git a/cla-backend-go/github/handlers.go b/cla-backend-go/github/handlers.go
index be88625f7..44a0333a4 100644
--- a/cla-backend-go/github/handlers.go
+++ b/cla-backend-go/github/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package github
diff --git a/cla-backend-go/health/handlers.go b/cla-backend-go/health/handlers.go
index 935f15fbc..609aa6443 100644
--- a/cla-backend-go/health/handlers.go
+++ b/cla-backend-go/health/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package health
diff --git a/cla-backend-go/health/service.go b/cla-backend-go/health/service.go
index 2bc91adc1..e344ed249 100644
--- a/cla-backend-go/health/service.go
+++ b/cla-backend-go/health/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package health
diff --git a/cla-backend-go/main.go b/cla-backend-go/main.go
index 1b450b89c..747765b8c 100644
--- a/cla-backend-go/main.go
+++ b/cla-backend-go/main.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package main
diff --git a/cla-backend-go/project/handlers.go b/cla-backend-go/project/handlers.go
index d12ceb817..08f16a812 100644
--- a/cla-backend-go/project/handlers.go
+++ b/cla-backend-go/project/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package project
diff --git a/cla-backend-go/project/repository.go b/cla-backend-go/project/repository.go
index f57402292..4efcc8e80 100644
--- a/cla-backend-go/project/repository.go
+++ b/cla-backend-go/project/repository.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package project
diff --git a/cla-backend-go/project/service.go b/cla-backend-go/project/service.go
index 7f1ee447f..8d3ef0dfc 100644
--- a/cla-backend-go/project/service.go
+++ b/cla-backend-go/project/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package project
diff --git a/cla-backend-go/template/handlers.go b/cla-backend-go/template/handlers.go
index f3b9f565d..dc7a393fc 100644
--- a/cla-backend-go/template/handlers.go
+++ b/cla-backend-go/template/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package template
diff --git a/cla-backend-go/template/repository.go b/cla-backend-go/template/repository.go
index f947ec0fd..7deed55aa 100644
--- a/cla-backend-go/template/repository.go
+++ b/cla-backend-go/template/repository.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package template
diff --git a/cla-backend-go/template/service.go b/cla-backend-go/template/service.go
index f91e0df8e..4c74d392c 100644
--- a/cla-backend-go/template/service.go
+++ b/cla-backend-go/template/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package template
diff --git a/cla-backend-go/user/repository.go b/cla-backend-go/user/repository.go
index 6f6c83829..47b83e861 100644
--- a/cla-backend-go/user/repository.go
+++ b/cla-backend-go/user/repository.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package user
diff --git a/cla-backend-go/user/service.go b/cla-backend-go/user/service.go
index d71d2f708..03ed2c76c 100644
--- a/cla-backend-go/user/service.go
+++ b/cla-backend-go/user/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package user
diff --git a/cla-backend-go/user/user.go b/cla-backend-go/user/user.go
index 1f74baae7..6244ada5a 100644
--- a/cla-backend-go/user/user.go
+++ b/cla-backend-go/user/user.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package user
diff --git a/cla-backend-go/whitelist/handlers.go b/cla-backend-go/whitelist/handlers.go
index 52796ce16..2373c6a39 100644
--- a/cla-backend-go/whitelist/handlers.go
+++ b/cla-backend-go/whitelist/handlers.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package whitelist
diff --git a/cla-backend-go/whitelist/repository.go b/cla-backend-go/whitelist/repository.go
index d87a75c7b..6553e643f 100644
--- a/cla-backend-go/whitelist/repository.go
+++ b/cla-backend-go/whitelist/repository.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package whitelist
diff --git a/cla-backend-go/whitelist/service.go b/cla-backend-go/whitelist/service.go
index ef0cab1f8..0501a06d5 100644
--- a/cla-backend-go/whitelist/service.go
+++ b/cla-backend-go/whitelist/service.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package whitelist
diff --git a/cla-backend/auth/authorizer/domain.go b/cla-backend/auth/authorizer/domain.go
index 731bde897..09ad42d83 100644
--- a/cla-backend/auth/authorizer/domain.go
+++ b/cla-backend/auth/authorizer/domain.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
// TokenInfo represents claims present in the token
diff --git a/cla-backend/auth/authorizer/interfaces.go b/cla-backend/auth/authorizer/interfaces.go
index 881576734..e08478ecf 100644
--- a/cla-backend/auth/authorizer/interfaces.go
+++ b/cla-backend/auth/authorizer/interfaces.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
import (
diff --git a/cla-backend/auth/authorizer/interfaces_test.go b/cla-backend/auth/authorizer/interfaces_test.go
index 80224ad25..e26120ee8 100644
--- a/cla-backend/auth/authorizer/interfaces_test.go
+++ b/cla-backend/auth/authorizer/interfaces_test.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
import (
diff --git a/cla-backend/auth/authorizer/usecases.go b/cla-backend/auth/authorizer/usecases.go
index 08a7395bd..25f40e681 100644
--- a/cla-backend/auth/authorizer/usecases.go
+++ b/cla-backend/auth/authorizer/usecases.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
import (
diff --git a/cla-backend/auth/authorizer/usecases_test.go b/cla-backend/auth/authorizer/usecases_test.go
index 524e87228..ae9cb0e9b 100644
--- a/cla-backend/auth/authorizer/usecases_test.go
+++ b/cla-backend/auth/authorizer/usecases_test.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
import (
diff --git a/cla-backend/auth/authorizer/validator.go b/cla-backend/auth/authorizer/validator.go
index d721a5ee7..081d00a63 100644
--- a/cla-backend/auth/authorizer/validator.go
+++ b/cla-backend/auth/authorizer/validator.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package authorizer
import (
diff --git a/cla-backend/auth/main.go b/cla-backend/auth/main.go
index fb40bee61..c8ae3442c 100644
--- a/cla-backend/auth/main.go
+++ b/cla-backend/auth/main.go
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
package main
import (
diff --git a/cla-backend/cla/__init__.py b/cla-backend/cla/__init__.py
index 59b5f6e5b..f5afd71e4 100644
--- a/cla-backend/cla/__init__.py
+++ b/cla-backend/cla/__init__.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
CLA-specific global variables and configuration.
diff --git a/cla-backend/cla/auth.py b/cla-backend/cla/auth.py
index 595b16a24..913370087 100644
--- a/cla-backend/cla/auth.py
+++ b/cla-backend/cla/auth.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
auth.py contains all necessary objects and functions to perform authentication and authorization.
diff --git a/cla-backend/cla/config.py b/cla-backend/cla/config.py
index 8dce10469..e89373dc4 100644
--- a/cla-backend/cla/config.py
+++ b/cla-backend/cla/config.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Application configuration options.
diff --git a/cla-backend/cla/controllers/__init__.py b/cla-backend/cla/controllers/__init__.py
index 36fac8bb4..f930528c7 100644
--- a/cla-backend/cla/controllers/__init__.py
+++ b/cla-backend/cla/controllers/__init__.py
@@ -1,2 +1,2 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
\ No newline at end of file
+# SPDX-License-Identifier: MIT
\ No newline at end of file
diff --git a/cla-backend/cla/controllers/company.py b/cla-backend/cla/controllers/company.py
index 4b63a8308..5ad0f6276 100644
--- a/cla-backend/cla/controllers/company.py
+++ b/cla-backend/cla/controllers/company.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to company operations.
diff --git a/cla-backend/cla/controllers/gerrit.py b/cla-backend/cla/controllers/gerrit.py
index 66633ffac..8ec5d0a71 100644
--- a/cla-backend/cla/controllers/gerrit.py
+++ b/cla-backend/cla/controllers/gerrit.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to repository operations.
diff --git a/cla-backend/cla/controllers/github.py b/cla-backend/cla/controllers/github.py
index 0dc0183c2..8d0f4bd6f 100644
--- a/cla-backend/cla/controllers/github.py
+++ b/cla-backend/cla/controllers/github.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to the github application (CLA GitHub App).
diff --git a/cla-backend/cla/controllers/github_application.py b/cla-backend/cla/controllers/github_application.py
index ab02f847e..29ae97636 100644
--- a/cla-backend/cla/controllers/github_application.py
+++ b/cla-backend/cla/controllers/github_application.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import time
import cla
diff --git a/cla-backend/cla/controllers/lf_group.py b/cla-backend/cla/controllers/lf_group.py
index c5851d5ef..fa4449d01 100644
--- a/cla-backend/cla/controllers/lf_group.py
+++ b/cla-backend/cla/controllers/lf_group.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import requests
import json
diff --git a/cla-backend/cla/controllers/project.py b/cla-backend/cla/controllers/project.py
index e08a5dfb6..01d139879 100644
--- a/cla-backend/cla/controllers/project.py
+++ b/cla-backend/cla/controllers/project.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to project operations.
diff --git a/cla-backend/cla/controllers/project_logo.py b/cla-backend/cla/controllers/project_logo.py
index 1e9540b23..b3bee68b8 100644
--- a/cla-backend/cla/controllers/project_logo.py
+++ b/cla-backend/cla/controllers/project_logo.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import os
from urllib.parse import urlsplit, urljoin
diff --git a/cla-backend/cla/controllers/repository.py b/cla-backend/cla/controllers/repository.py
index 8f6623733..b82e68bd1 100644
--- a/cla-backend/cla/controllers/repository.py
+++ b/cla-backend/cla/controllers/repository.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to repository operations.
diff --git a/cla-backend/cla/controllers/repository_service.py b/cla-backend/cla/controllers/repository_service.py
index ed0a3a4ca..21a9d4c70 100644
--- a/cla-backend/cla/controllers/repository_service.py
+++ b/cla-backend/cla/controllers/repository_service.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to repository service provider activity.
diff --git a/cla-backend/cla/controllers/signature.py b/cla-backend/cla/controllers/signature.py
index c357507a0..aed1ef904 100644
--- a/cla-backend/cla/controllers/signature.py
+++ b/cla-backend/cla/controllers/signature.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to signature operations.
diff --git a/cla-backend/cla/controllers/signing.py b/cla-backend/cla/controllers/signing.py
index ebf6b9bc1..e81d6ea5e 100644
--- a/cla-backend/cla/controllers/signing.py
+++ b/cla-backend/cla/controllers/signing.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to the signed callback.
diff --git a/cla-backend/cla/controllers/user.py b/cla-backend/cla/controllers/user.py
index 4d1986bd3..d292aa35f 100644
--- a/cla-backend/cla/controllers/user.py
+++ b/cla-backend/cla/controllers/user.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Controller related to user operations.
diff --git a/cla-backend/cla/hug_types.py b/cla-backend/cla/hug_types.py
index 4e5bab469..60c5aa22b 100644
--- a/cla-backend/cla/hug_types.py
+++ b/cla-backend/cla/hug_types.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Hug types.
diff --git a/cla-backend/cla/models/__init__.py b/cla-backend/cla/models/__init__.py
index 0146ac5eb..cc114a641 100644
--- a/cla-backend/cla/models/__init__.py
+++ b/cla-backend/cla/models/__init__.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds various exception classes.
diff --git a/cla-backend/cla/models/docraptor_models.py b/cla-backend/cla/models/docraptor_models.py
index a721a7cac..aee77ccd7 100644
--- a/cla-backend/cla/models/docraptor_models.py
+++ b/cla-backend/cla/models/docraptor_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
DocRaptor PDF generator.
diff --git a/cla-backend/cla/models/docusign_models.py b/cla-backend/cla/models/docusign_models.py
index 28aaa9a25..d2340a2fb 100644
--- a/cla-backend/cla/models/docusign_models.py
+++ b/cla-backend/cla/models/docusign_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Easily perform signing workflows using DocuSign signing service with pydocusign.
diff --git a/cla-backend/cla/models/dynamo_models.py b/cla-backend/cla/models/dynamo_models.py
index 988f40b44..e4d89ee5d 100644
--- a/cla-backend/cla/models/dynamo_models.py
+++ b/cla-backend/cla/models/dynamo_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Easily access CLA models backed by DynamoDB using pynamodb.
diff --git a/cla-backend/cla/models/email_service_interface.py b/cla-backend/cla/models/email_service_interface.py
index 8b482bf10..5f266944f 100644
--- a/cla-backend/cla/models/email_service_interface.py
+++ b/cla-backend/cla/models/email_service_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the email service interfaces that all email models must implement.
diff --git a/cla-backend/cla/models/github_models.py b/cla-backend/cla/models/github_models.py
index b920d6c66..c523190a5 100644
--- a/cla-backend/cla/models/github_models.py
+++ b/cla-backend/cla/models/github_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the GitHub repository service.
diff --git a/cla-backend/cla/models/gitlab_models.py b/cla-backend/cla/models/gitlab_models.py
index 8ecdac09a..54d9da293 100644
--- a/cla-backend/cla/models/gitlab_models.py
+++ b/cla-backend/cla/models/gitlab_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the GitLab repository service.
diff --git a/cla-backend/cla/models/key_value_store_interface.py b/cla-backend/cla/models/key_value_store_interface.py
index c8587ffed..2dbfc9263 100644
--- a/cla-backend/cla/models/key_value_store_interface.py
+++ b/cla-backend/cla/models/key_value_store_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the model interfaces that all key-value store models must implement.
diff --git a/cla-backend/cla/models/local_storage.py b/cla-backend/cla/models/local_storage.py
index 855124d63..58ec3b0d1 100644
--- a/cla-backend/cla/models/local_storage.py
+++ b/cla-backend/cla/models/local_storage.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Storage service that stores files locally on disk.
diff --git a/cla-backend/cla/models/model_interfaces.py b/cla-backend/cla/models/model_interfaces.py
index 45d9fde99..86b8f0c20 100644
--- a/cla-backend/cla/models/model_interfaces.py
+++ b/cla-backend/cla/models/model_interfaces.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the model interfaces that all storage models must implement.
diff --git a/cla-backend/cla/models/pdf_service_interface.py b/cla-backend/cla/models/pdf_service_interface.py
index 0f08c51e5..6b178a1bc 100644
--- a/cla-backend/cla/models/pdf_service_interface.py
+++ b/cla-backend/cla/models/pdf_service_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the PDF generator service interfaces that all PDF generators implement.
diff --git a/cla-backend/cla/models/repository_service_interface.py b/cla-backend/cla/models/repository_service_interface.py
index f9af41e5b..d4a9a8d3d 100644
--- a/cla-backend/cla/models/repository_service_interface.py
+++ b/cla-backend/cla/models/repository_service_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the repository service interfaces that all repository models must implement.
diff --git a/cla-backend/cla/models/s3_storage.py b/cla-backend/cla/models/s3_storage.py
index 915e7a599..4ecdae4ee 100644
--- a/cla-backend/cla/models/s3_storage.py
+++ b/cla-backend/cla/models/s3_storage.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Storage service that stores files in AWS S3 buckets.
diff --git a/cla-backend/cla/models/ses_models.py b/cla-backend/cla/models/ses_models.py
index 1cd60aadf..a020b6a03 100644
--- a/cla-backend/cla/models/ses_models.py
+++ b/cla-backend/cla/models/ses_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the AWS SES email service that can be used to send emails.
diff --git a/cla-backend/cla/models/signing_service_interface.py b/cla-backend/cla/models/signing_service_interface.py
index d567885b7..4768873b4 100644
--- a/cla-backend/cla/models/signing_service_interface.py
+++ b/cla-backend/cla/models/signing_service_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the signing service interfaces that all signing service models must implement.
diff --git a/cla-backend/cla/models/smtp_models.py b/cla-backend/cla/models/smtp_models.py
index 070142e53..bbf11c15a 100644
--- a/cla-backend/cla/models/smtp_models.py
+++ b/cla-backend/cla/models/smtp_models.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the STMP email service that can be used to send emails.
diff --git a/cla-backend/cla/models/storage_service_interface.py b/cla-backend/cla/models/storage_service_interface.py
index e9ee36f71..3cb47a78a 100644
--- a/cla-backend/cla/models/storage_service_interface.py
+++ b/cla-backend/cla/models/storage_service_interface.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds the storage service interfaces that all storage mechanisms must implement.
diff --git a/cla-backend/cla/resources/__init__.py b/cla-backend/cla/resources/__init__.py
index 36fac8bb4..f930528c7 100644
--- a/cla-backend/cla/resources/__init__.py
+++ b/cla-backend/cla/resources/__init__.py
@@ -1,2 +1,2 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
\ No newline at end of file
+# SPDX-License-Identifier: MIT
\ No newline at end of file
diff --git a/cla-backend/cla/resources/contract_templates.py b/cla-backend/cla/resources/contract_templates.py
index 48f314533..84edb7301 100644
--- a/cla-backend/cla/resources/contract_templates.py
+++ b/cla-backend/cla/resources/contract_templates.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Holds various HTML contract templates.
diff --git a/cla-backend/cla/routes.py b/cla-backend/cla/routes.py
index 3f07c5a25..5ac14dbe3 100755
--- a/cla-backend/cla/routes.py
+++ b/cla-backend/cla/routes.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
The entry point for the CLA service. Lays out all routes and controller functions.
diff --git a/cla-backend/cla/salesforce.py b/cla-backend/cla/salesforce.py
index 1196601af..313a41828 100644
--- a/cla-backend/cla/salesforce.py
+++ b/cla-backend/cla/salesforce.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import cla
import requests
diff --git a/cla-backend/cla/user.py b/cla-backend/cla/user.py
index 6001c7d16..e36298262 100644
--- a/cla-backend/cla/user.py
+++ b/cla-backend/cla/user.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
user.py contains the user class and hug directive.
diff --git a/cla-backend/cla/utils.py b/cla-backend/cla/utils.py
index ac2f09b86..cf3f4de79 100644
--- a/cla-backend/cla/utils.py
+++ b/cla-backend/cla/utils.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Utility functions for the CLA project.
diff --git a/cla-backend/helpers/add_company_whitelist.py b/cla-backend/helpers/add_company_whitelist.py
index aa9e4e64c..e1c18a9ee 100644
--- a/cla-backend/helpers/add_company_whitelist.py
+++ b/cla-backend/helpers/add_company_whitelist.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to create companies.
diff --git a/cla-backend/helpers/complete_signature.py b/cla-backend/helpers/complete_signature.py
index df8491c2f..9e38df6b8 100644
--- a/cla-backend/helpers/complete_signature.py
+++ b/cla-backend/helpers/complete_signature.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to complete a signature (manually fire the DocuSign callback).
diff --git a/cla-backend/helpers/create_company.py b/cla-backend/helpers/create_company.py
index b453a3828..37ecd5ceb 100644
--- a/cla-backend/helpers/create_company.py
+++ b/cla-backend/helpers/create_company.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to create companies.
diff --git a/cla-backend/helpers/create_data.py b/cla-backend/helpers/create_data.py
index e3c8cc51e..709e5b4fa 100644
--- a/cla-backend/helpers/create_data.py
+++ b/cla-backend/helpers/create_data.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import sys
sys.path.append('../')
diff --git a/cla-backend/helpers/create_database.py b/cla-backend/helpers/create_database.py
index ddeec36b1..fc8a1467f 100644
--- a/cla-backend/helpers/create_database.py
+++ b/cla-backend/helpers/create_database.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import sys
sys.path.append('../')
diff --git a/cla-backend/helpers/create_document.py b/cla-backend/helpers/create_document.py
index 1bdcbdcf5..f0b3c71a3 100644
--- a/cla-backend/helpers/create_document.py
+++ b/cla-backend/helpers/create_document.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
PROJECT_EXTERNAL_ID1 = 'a090t0000008DEiAAM'
PROJECT_EXTERNAL_ID2 = 'a090t0000008E7iAAE'
diff --git a/cla-backend/helpers/create_new_active_signature.py b/cla-backend/helpers/create_new_active_signature.py
index 7ae3c3903..2f10cd2db 100644
--- a/cla-backend/helpers/create_new_active_signature.py
+++ b/cla-backend/helpers/create_new_active_signature.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to create a new user signature request (simulate a user clicking on the sign icon in GitHub).
diff --git a/cla-backend/helpers/create_organization.py b/cla-backend/helpers/create_organization.py
index f803943ad..f69112aa5 100644
--- a/cla-backend/helpers/create_organization.py
+++ b/cla-backend/helpers/create_organization.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# Project external ID.
PROJECT_EXTERNAL_ID = 'a090t0000008DEiAAM'
diff --git a/cla-backend/helpers/create_project.py b/cla-backend/helpers/create_project.py
index 147b2013a..5dac6aba2 100644
--- a/cla-backend/helpers/create_project.py
+++ b/cla-backend/helpers/create_project.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# Project external ID.
PROJECT_EXTERNAL_ID1 = 'a090t0000008DEiAAM'
diff --git a/cla-backend/helpers/create_signatures.py b/cla-backend/helpers/create_signatures.py
index 1a5ab2fb7..5967d1e73 100644
--- a/cla-backend/helpers/create_signatures.py
+++ b/cla-backend/helpers/create_signatures.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to create a ICLA and CCLA signature in the CLA system.
diff --git a/cla-backend/helpers/create_test_environment.py b/cla-backend/helpers/create_test_environment.py
index f9abb154b..b04f8639d 100644
--- a/cla-backend/helpers/create_test_environment.py
+++ b/cla-backend/helpers/create_test_environment.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import sys
sys.path.append('../')
diff --git a/cla-backend/helpers/create_user.py b/cla-backend/helpers/create_user.py
index 6dc561b80..666802197 100644
--- a/cla-backend/helpers/create_user.py
+++ b/cla-backend/helpers/create_user.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to create a user and agreement in the CLA system.
diff --git a/cla-backend/helpers/get_token.py b/cla-backend/helpers/get_token.py
index 1646407b1..1c3fde21a 100644
--- a/cla-backend/helpers/get_token.py
+++ b/cla-backend/helpers/get_token.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import sys
sys.path.append('../')
diff --git a/cla-backend/helpers/send_document.py b/cla-backend/helpers/send_document.py
index 424cfe40a..1d40e38bc 100644
--- a/cla-backend/helpers/send_document.py
+++ b/cla-backend/helpers/send_document.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
"""
Convenience script to send a DocuSign document to the user's email address.
diff --git a/cla-backend/serverless-dynamodb-backups/handler.py b/cla-backend/serverless-dynamodb-backups/handler.py
index 425bb0a08..9980914c5 100644
--- a/cla-backend/serverless-dynamodb-backups/handler.py
+++ b/cla-backend/serverless-dynamodb-backups/handler.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
from datetime import datetime, timedelta
import json
diff --git a/cla-frontend-console/edge/package.json b/cla-frontend-console/edge/package.json
index fc12b3ad4..447f00a89 100644
--- a/cla-frontend-console/edge/package.json
+++ b/cla-frontend-console/edge/package.json
@@ -2,7 +2,7 @@
"name": "edge",
"version": "1.0.0",
"main": "index.js",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"prebuild": "yarn install",
"build": "webpack",
diff --git a/cla-frontend-console/edge/security-headers.js b/cla-frontend-console/edge/security-headers.js
index cf1840f04..3bd789d08 100644
--- a/cla-frontend-console/edge/security-headers.js
+++ b/cla-frontend-console/edge/security-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
function getHeaders(env, isDevServer) {
return {
diff --git a/cla-frontend-console/edge/src/add-headers.js b/cla-frontend-console/edge/src/add-headers.js
index ee753aaba..248e1c98a 100644
--- a/cla-frontend-console/edge/src/add-headers.js
+++ b/cla-frontend-console/edge/src/add-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
exports.addHeaders = function(event, headerList) {
const { response } = event.Records[0].cf;
diff --git a/cla-frontend-console/edge/src/add-headers.spec.js b/cla-frontend-console/edge/src/add-headers.spec.js
index efbdf39e5..f517449a1 100644
--- a/cla-frontend-console/edge/src/add-headers.spec.js
+++ b/cla-frontend-console/edge/src/add-headers.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./add-headers');
diff --git a/cla-frontend-console/edge/src/index.js b/cla-frontend-console/edge/src/index.js
index 2caaddf4c..33eb978e8 100644
--- a/cla-frontend-console/edge/src/index.js
+++ b/cla-frontend-console/edge/src/index.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const addHeaders = require('./add-headers');
const setCacheControl = require('./set-cache-control');
diff --git a/cla-frontend-console/edge/src/set-cache-control.js b/cla-frontend-console/edge/src/set-cache-control.js
index b7c0b8ad0..0490263cd 100644
--- a/cla-frontend-console/edge/src/set-cache-control.js
+++ b/cla-frontend-console/edge/src/set-cache-control.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Splits a header property in the format 'key=value', or just 'key', and returns an object in the format {key: value}.
diff --git a/cla-frontend-console/edge/src/set-cache-control.spec.js b/cla-frontend-console/edge/src/set-cache-control.spec.js
index 677a063ce..9cee1f266 100644
--- a/cla-frontend-console/edge/src/set-cache-control.spec.js
+++ b/cla-frontend-console/edge/src/set-cache-control.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./set-cache-control');
diff --git a/cla-frontend-console/edge/webpack.config.js b/cla-frontend-console/edge/webpack.config.js
index c7d9874ba..661d4acff 100644
--- a/cla-frontend-console/edge/webpack.config.js
+++ b/cla-frontend-console/edge/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const webpack = require('webpack');
const path = require('path');
diff --git a/cla-frontend-console/package.json b/cla-frontend-console/package.json
index a81f9da0c..8497636f2 100644
--- a/cla-frontend-console/package.json
+++ b/cla-frontend-console/package.json
@@ -1,7 +1,7 @@
{
"name": "frontend-project-management-console",
"version": "0.0.0",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"deploy": "../scripts/deploy-frontend.sh",
"sls": "../node_modules/.bin/serverless",
diff --git a/cla-frontend-console/src/config/scripts/prefetch-ssm.js b/cla-frontend-console/src/config/scripts/prefetch-ssm.js
index abee1fcb8..4705c5d37 100644
--- a/cla-frontend-console/src/config/scripts/prefetch-ssm.js
+++ b/cla-frontend-console/src/config/scripts/prefetch-ssm.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const fs = require('fs');
const RetrieveSSMValues = require('./read-ssm');
diff --git a/cla-frontend-console/src/config/scripts/read-local.js b/cla-frontend-console/src/config/scripts/read-local.js
index bd63a32ff..248875612 100644
--- a/cla-frontend-console/src/config/scripts/read-local.js
+++ b/cla-frontend-console/src/config/scripts/read-local.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* @param {string[]} variables
diff --git a/cla-frontend-console/src/config/scripts/read-ssm.js b/cla-frontend-console/src/config/scripts/read-ssm.js
index 87d665502..a4002a811 100644
--- a/cla-frontend-console/src/config/scripts/read-ssm.js
+++ b/cla-frontend-console/src/config/scripts/read-ssm.js
@@ -1,7 +1,7 @@
// @ts-check
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const AWS = require('aws-sdk');
/**
diff --git a/cla-frontend-console/src/config/webpack.config.js b/cla-frontend-console/src/config/webpack.config.js
index 16c81184a..d52bc4ad7 100644
--- a/cla-frontend-console/src/config/webpack.config.js
+++ b/cla-frontend-console/src/config/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const { dev, prod} = require('@ionic/app-scripts/config/webpack.config');
const webpack = require('webpack');
diff --git a/cla-frontend-console/src/ionic/app/app.component.ts b/cla-frontend-console/src/ionic/app/app.component.ts
index fd2edd850..72921f765 100755
--- a/cla-frontend-console/src/ionic/app/app.component.ts
+++ b/cla-frontend-console/src/ionic/app/app.component.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from "@angular/core";
import { Nav, Platform } from "ionic-angular";
diff --git a/cla-frontend-console/src/ionic/app/app.module.ts b/cla-frontend-console/src/ionic/app/app.module.ts
index 2a258c177..95c97509d 100755
--- a/cla-frontend-console/src/ionic/app/app.module.ts
+++ b/cla-frontend-console/src/ionic/app/app.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { BrowserModule } from "@angular/platform-browser";
import { NgModule, ErrorHandler } from "@angular/core";
diff --git a/cla-frontend-console/src/ionic/app/main.ts b/cla-frontend-console/src/ionic/app/main.ts
index 943964302..b02329c17 100755
--- a/cla-frontend-console/src/ionic/app/main.ts
+++ b/cla-frontend-console/src/ionic/app/main.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
diff --git a/cla-frontend-console/src/ionic/claenv.d.ts b/cla-frontend-console/src/ionic/claenv.d.ts
index c7e968a68..bcdd3a24c 100644
--- a/cla-frontend-console/src/ionic/claenv.d.ts
+++ b/cla-frontend-console/src/ionic/claenv.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
declare module "*.json"
{
diff --git a/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.module.ts b/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
index 8beff1d65..721b2ad6b 100644
--- a/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
+++ b/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.ts b/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.ts
index 82548dee5..4caf90f3f 100644
--- a/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.ts
+++ b/cla-frontend-console/src/ionic/components/loading-spinner/loading-spinner.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.module.ts b/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.module.ts
index 26c45996c..b8b71dfb3 100644
--- a/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.module.ts
+++ b/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.ts b/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.ts
index 753d1753c..f2f457ec4 100644
--- a/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.ts
+++ b/cla-frontend-console/src/ionic/components/sorting-display/sorting-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/cla-frontend-console/src/ionic/declarations.d.ts b/cla-frontend-console/src/ionic/declarations.d.ts
index 97c7388bf..6c9d80024 100755
--- a/cla-frontend-console/src/ionic/declarations.d.ts
+++ b/cla-frontend-console/src/ionic/declarations.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/*
Declaration files are how the Typescript compiler knows about the type information(or shape) of an object.
diff --git a/cla-frontend-console/src/ionic/decorators/restricted.ts b/cla-frontend-console/src/ionic/decorators/restricted.ts
index 5a0ee4a09..8deb6d90b 100644
--- a/cla-frontend-console/src/ionic/decorators/restricted.ts
+++ b/cla-frontend-console/src/ionic/decorators/restricted.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export function Restricted(restrictions: any) {
diff --git a/cla-frontend-console/src/ionic/directives/loading-display/loading-display.module.ts b/cla-frontend-console/src/ionic/directives/loading-display/loading-display.module.ts
index bb7602d24..5e7e8efad 100644
--- a/cla-frontend-console/src/ionic/directives/loading-display/loading-display.module.ts
+++ b/cla-frontend-console/src/ionic/directives/loading-display/loading-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { LoadingDisplayDirective } from './loading-display';
diff --git a/cla-frontend-console/src/ionic/directives/loading-display/loading-display.ts b/cla-frontend-console/src/ionic/directives/loading-display/loading-display.ts
index 6988a37a3..f6340004a 100644
--- a/cla-frontend-console/src/ionic/directives/loading-display/loading-display.ts
+++ b/cla-frontend-console/src/ionic/directives/loading-display/loading-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Directive, ElementRef, Renderer2, Input, OnChanges, SimpleChange } from '@angular/core';
diff --git a/cla-frontend-console/src/ionic/layout/cla-footer/cla-footer.ts b/cla-frontend-console/src/ionic/layout/cla-footer/cla-footer.ts
index 4d967b70d..26ca7bce6 100644
--- a/cla-frontend-console/src/ionic/layout/cla-footer/cla-footer.ts
+++ b/cla-frontend-console/src/ionic/layout/cla-footer/cla-footer.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component} from "@angular/core";
diff --git a/cla-frontend-console/src/ionic/layout/layout.module.ts b/cla-frontend-console/src/ionic/layout/layout.module.ts
index 275d4bc41..6618f9754 100644
--- a/cla-frontend-console/src/ionic/layout/layout.module.ts
+++ b/cla-frontend-console/src/ionic/layout/layout.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { ClaFooter } from "./cla-footer/cla-footer";
diff --git a/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.module.ts
index 53828a81d..346a565a1 100644
--- a/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.ts b/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.ts
index 71695e778..a32cace86 100644
--- a/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-company-admin-send-email-modal/cla-company-admin-send-email-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ModalController, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.module.ts
index 38e3b2c21..2861cc278 100644
--- a/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.ts b/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.ts
index 99115ae29..1d3c36715 100644
--- a/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-company-admin-yesno-modal/cla-company-admin-yesno-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ElementRef, ViewChild, } from '@angular/core';
import { NavController, NavParams, ViewController, ModalController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.module.ts
index 3243b7098..89c773b05 100644
--- a/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.ts b/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.ts
index e88547a85..0ea380e42 100644
--- a/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-employee-request-access-modal/cla-employee-request-access-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ModalController, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.module.ts
index cb9b9d2a6..1b5d7f9c2 100644
--- a/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.ts b/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.ts
index 21c4d4f62..dc9d14980 100644
--- a/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-new-company-modal/cla-new-company-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ElementRef, ViewChild, } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.module.ts
index d284efcb3..9e7e3ffa4 100644
--- a/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.ts b/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.ts
index 2c4ae48ea..b367d63b9 100644
--- a/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-next-step-modal/cla-next-step-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, } from '@angular/core';
import { NavController, NavParams, ViewController, ModalController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.module.ts
index df753bf7a..4d7e583ce 100644
--- a/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.ts b/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.ts
index 86a2eedbe..f04420f57 100644
--- a/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-select-company-modal/cla-select-company-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, } from '@angular/core';
import { NavController, NavParams, ViewController, ModalController, IonicPage, AlertController } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.module.ts b/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.module.ts
index 5f78d44c3..683232425 100644
--- a/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.module.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.ts b/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.ts
index 38bde408c..fa3f503eb 100644
--- a/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.ts
+++ b/cla-frontend-console/src/ionic/modals/cla-send-cla-manager-email-modal/cla-send-cla-manager-email-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ModalController, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/models/member-contact-model.ts b/cla-frontend-console/src/ionic/models/member-contact-model.ts
index 319fa1991..1ea89b1f1 100644
--- a/cla-frontend-console/src/ionic/models/member-contact-model.ts
+++ b/cla-frontend-console/src/ionic/models/member-contact-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class MemberContactModel {
diff --git a/cla-frontend-console/src/ionic/models/member-model.ts b/cla-frontend-console/src/ionic/models/member-model.ts
index df016e260..40b0569d2 100644
--- a/cla-frontend-console/src/ionic/models/member-model.ts
+++ b/cla-frontend-console/src/ionic/models/member-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class MemberModel {
diff --git a/cla-frontend-console/src/ionic/models/project-model.ts b/cla-frontend-console/src/ionic/models/project-model.ts
index 7d72d340e..ccbb7d679 100644
--- a/cla-frontend-console/src/ionic/models/project-model.ts
+++ b/cla-frontend-console/src/ionic/models/project-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ProjectModel {
diff --git a/cla-frontend-console/src/ionic/pages/auth/auth.module.ts b/cla-frontend-console/src/ionic/pages/auth/auth.module.ts
index 395005fff..db674401c 100644
--- a/cla-frontend-console/src/ionic/pages/auth/auth.module.ts
+++ b/cla-frontend-console/src/ionic/pages/auth/auth.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/auth/auth.ts b/cla-frontend-console/src/ionic/pages/auth/auth.ts
index 38f3d0fe8..cab48c278 100644
--- a/cla-frontend-console/src/ionic/pages/auth/auth.ts
+++ b/cla-frontend-console/src/ionic/pages/auth/auth.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.module.ts b/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.module.ts
index 1f22b111f..135e64f79 100644
--- a/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.ts b/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.ts
index 888a5a09a..f2f5884cb 100644
--- a/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-company-signup/cla-company-signup.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.module.ts b/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.module.ts
index 3ddf34348..6967357af 100644
--- a/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.ts b/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.ts
index a945f2a41..db9ab6d43 100644
--- a/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-employee-company-confirm/cla-employee-company-confirm.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.module.ts b/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.module.ts
index dfb9758c2..ffe99b940 100644
--- a/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.ts b/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.ts
index 022d96392..f1af108c7 100644
--- a/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-employee-company-troubleshoot/cla-employee-company-troubleshoot.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.module.ts b/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.module.ts
index adc4be939..355001c2d 100644
--- a/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.ts b/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.ts
index c4e18ec84..dc421e820 100644
--- a/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-gerrit-corporate/cla-gerrit-corporate.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, } from '@angular/core';
import { NavController, NavParams, ViewController, ModalController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.module.ts b/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.module.ts
index 62e6fff4b..605b896df 100644
--- a/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.ts b/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.ts
index b2208f4c1..ef018a3dd 100644
--- a/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-gerrit-individual/cla-gerrit-individual.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.module.ts b/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.module.ts
index 6daa96709..fc9ea057b 100644
--- a/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.ts b/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.ts
index 6dcc3b3c7..66496f120 100644
--- a/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-individual/cla-individual.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.module.ts b/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.module.ts
index 5f8cd469e..457244176 100644
--- a/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.ts b/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.ts
index 5b1e0b8c4..ba15d497c 100755
--- a/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-landing/cla-landing.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, IonicPage, ModalController, NavParams, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.module.ts b/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.module.ts
index 2e0bf395c..1844a7b78 100644
--- a/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.ts b/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.ts
index dfc7728ac..b0bed3f7b 100644
--- a/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-loading/cla-loading.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, IonicPage, ModalController, NavParams, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.module.ts b/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.module.ts
index e86c5f32d..d63179157 100644
--- a/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.module.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.ts b/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.ts
index 8818222fd..fa7bb7283 100644
--- a/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.ts
+++ b/cla-frontend-console/src/ionic/pages/cla-message-sent/cla-message-sent.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/login/login.module.ts b/cla-frontend-console/src/ionic/pages/login/login.module.ts
index 8c30e8d16..b06088518 100644
--- a/cla-frontend-console/src/ionic/pages/login/login.module.ts
+++ b/cla-frontend-console/src/ionic/pages/login/login.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-console/src/ionic/pages/login/login.ts b/cla-frontend-console/src/ionic/pages/login/login.ts
index fe3687290..b0eab6309 100644
--- a/cla-frontend-console/src/ionic/pages/login/login.ts
+++ b/cla-frontend-console/src/ionic/pages/login/login.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { NavController, IonicPage, NavParams } from "ionic-angular";
diff --git a/cla-frontend-console/src/ionic/service-worker.js b/cla-frontend-console/src/ionic/service-worker.js
index c4b57b091..09caac3ff 100755
--- a/cla-frontend-console/src/ionic/service-worker.js
+++ b/cla-frontend-console/src/ionic/service-worker.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Check out https://googlechrome.github.io/sw-toolbox/docs/master/index.html for
diff --git a/cla-frontend-console/src/ionic/services/auth.service.ts b/cla-frontend-console/src/ionic/services/auth.service.ts
index 477863f0a..73b9a1ccb 100644
--- a/cla-frontend-console/src/ionic/services/auth.service.ts
+++ b/cla-frontend-console/src/ionic/services/auth.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import * as auth0 from "auth0-js";
diff --git a/cla-frontend-console/src/ionic/services/auth.utils.ts b/cla-frontend-console/src/ionic/services/auth.utils.ts
index 732445bc9..4791ee839 100644
--- a/cla-frontend-console/src/ionic/services/auth.utils.ts
+++ b/cla-frontend-console/src/ionic/services/auth.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export const AUTH_ROUTE = '#/auth';
diff --git a/cla-frontend-console/src/ionic/services/cla.env.utils.ts b/cla-frontend-console/src/ionic/services/cla.env.utils.ts
index 1de6941bb..fc3bd9a67 100644
--- a/cla-frontend-console/src/ionic/services/cla.env.utils.ts
+++ b/cla-frontend-console/src/ionic/services/cla.env.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import * as env from '../../config/cla-env-config.json';
export const EnvConfig = env as any;
diff --git a/cla-frontend-console/src/ionic/services/cla.service.ts b/cla-frontend-console/src/ionic/services/cla.service.ts
index e3883a7cc..1a4afe706 100644
--- a/cla-frontend-console/src/ionic/services/cla.service.ts
+++ b/cla-frontend-console/src/ionic/services/cla.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Http } from "@angular/http";
diff --git a/cla-frontend-console/src/ionic/services/constants.ts b/cla-frontend-console/src/ionic/services/constants.ts
index 0695846e4..858141d8b 100644
--- a/cla-frontend-console/src/ionic/services/constants.ts
+++ b/cla-frontend-console/src/ionic/services/constants.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export const CINCO_API_URL: string = "https://cinco_api_endpoint";
export const CLA_API_URL: string =
diff --git a/cla-frontend-console/src/ionic/services/http-client.ts b/cla-frontend-console/src/ionic/services/http-client.ts
index 917b29f30..f4f761f4e 100644
--- a/cla-frontend-console/src/ionic/services/http-client.ts
+++ b/cla-frontend-console/src/ionic/services/http-client.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { Http, Headers } from '@angular/http';
diff --git a/cla-frontend-console/src/ionic/services/roles.service.ts b/cla-frontend-console/src/ionic/services/roles.service.ts
index 91fb7e124..88d29f2c6 100644
--- a/cla-frontend-console/src/ionic/services/roles.service.ts
+++ b/cla-frontend-console/src/ionic/services/roles.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Observable } from "rxjs/Observable";
diff --git a/cla-frontend-console/src/ionic/validators/calendarlink.ts b/cla-frontend-console/src/ionic/validators/calendarlink.ts
index 62165be47..700d72d0d 100644
--- a/cla-frontend-console/src/ionic/validators/calendarlink.ts
+++ b/cla-frontend-console/src/ionic/validators/calendarlink.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/cla-frontend-console/src/ionic/validators/checkbox.ts b/cla-frontend-console/src/ionic/validators/checkbox.ts
index f372c1edd..5e69e584a 100644
--- a/cla-frontend-console/src/ionic/validators/checkbox.ts
+++ b/cla-frontend-console/src/ionic/validators/checkbox.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/cla-frontend-console/src/ionic/validators/email.ts b/cla-frontend-console/src/ionic/validators/email.ts
index ed5ca69f0..4d5001cba 100644
--- a/cla-frontend-console/src/ionic/validators/email.ts
+++ b/cla-frontend-console/src/ionic/validators/email.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/cla-frontend-console/src/ionic/validators/phonenumber.ts b/cla-frontend-console/src/ionic/validators/phonenumber.ts
index 37fc6f133..4ae2fff87 100644
--- a/cla-frontend-console/src/ionic/validators/phonenumber.ts
+++ b/cla-frontend-console/src/ionic/validators/phonenumber.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
declare var require: any;
diff --git a/cla-frontend-console/src/ionic/validators/url.ts b/cla-frontend-console/src/ionic/validators/url.ts
index 2ccf7bb31..990ba8723 100644
--- a/cla-frontend-console/src/ionic/validators/url.ts
+++ b/cla-frontend-console/src/ionic/validators/url.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/cla-frontend-console/src/package.json b/cla-frontend-console/src/package.json
index 8af272507..9286a6b3c 100755
--- a/cla-frontend-console/src/package.json
+++ b/cla-frontend-console/src/package.json
@@ -1,6 +1,6 @@
{
"name": "cla-console-app",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"author": "",
"private": true,
"os": [
diff --git a/cla-frontend-corporate-console/edge/package.json b/cla-frontend-corporate-console/edge/package.json
index fc12b3ad4..447f00a89 100644
--- a/cla-frontend-corporate-console/edge/package.json
+++ b/cla-frontend-corporate-console/edge/package.json
@@ -2,7 +2,7 @@
"name": "edge",
"version": "1.0.0",
"main": "index.js",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"prebuild": "yarn install",
"build": "webpack",
diff --git a/cla-frontend-corporate-console/edge/security-headers.js b/cla-frontend-corporate-console/edge/security-headers.js
index bf02b9d72..41a74e107 100644
--- a/cla-frontend-corporate-console/edge/security-headers.js
+++ b/cla-frontend-corporate-console/edge/security-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
function getHeaders(env, isDevServer) {
return {
diff --git a/cla-frontend-corporate-console/edge/src/add-headers.js b/cla-frontend-corporate-console/edge/src/add-headers.js
index ee753aaba..248e1c98a 100644
--- a/cla-frontend-corporate-console/edge/src/add-headers.js
+++ b/cla-frontend-corporate-console/edge/src/add-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
exports.addHeaders = function(event, headerList) {
const { response } = event.Records[0].cf;
diff --git a/cla-frontend-corporate-console/edge/src/add-headers.spec.js b/cla-frontend-corporate-console/edge/src/add-headers.spec.js
index efbdf39e5..f517449a1 100644
--- a/cla-frontend-corporate-console/edge/src/add-headers.spec.js
+++ b/cla-frontend-corporate-console/edge/src/add-headers.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./add-headers');
diff --git a/cla-frontend-corporate-console/edge/src/index.js b/cla-frontend-corporate-console/edge/src/index.js
index 2caaddf4c..33eb978e8 100644
--- a/cla-frontend-corporate-console/edge/src/index.js
+++ b/cla-frontend-corporate-console/edge/src/index.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const addHeaders = require('./add-headers');
const setCacheControl = require('./set-cache-control');
diff --git a/cla-frontend-corporate-console/edge/src/set-cache-control.js b/cla-frontend-corporate-console/edge/src/set-cache-control.js
index b7c0b8ad0..0490263cd 100644
--- a/cla-frontend-corporate-console/edge/src/set-cache-control.js
+++ b/cla-frontend-corporate-console/edge/src/set-cache-control.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Splits a header property in the format 'key=value', or just 'key', and returns an object in the format {key: value}.
diff --git a/cla-frontend-corporate-console/edge/src/set-cache-control.spec.js b/cla-frontend-corporate-console/edge/src/set-cache-control.spec.js
index 677a063ce..9cee1f266 100644
--- a/cla-frontend-corporate-console/edge/src/set-cache-control.spec.js
+++ b/cla-frontend-corporate-console/edge/src/set-cache-control.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./set-cache-control');
diff --git a/cla-frontend-corporate-console/edge/webpack.config.js b/cla-frontend-corporate-console/edge/webpack.config.js
index c7d9874ba..661d4acff 100644
--- a/cla-frontend-corporate-console/edge/webpack.config.js
+++ b/cla-frontend-corporate-console/edge/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const webpack = require('webpack');
const path = require('path');
diff --git a/cla-frontend-corporate-console/package.json b/cla-frontend-corporate-console/package.json
index a81f9da0c..8497636f2 100644
--- a/cla-frontend-corporate-console/package.json
+++ b/cla-frontend-corporate-console/package.json
@@ -1,7 +1,7 @@
{
"name": "frontend-project-management-console",
"version": "0.0.0",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"deploy": "../scripts/deploy-frontend.sh",
"sls": "../node_modules/.bin/serverless",
diff --git a/cla-frontend-corporate-console/src/config/scripts/prefetch-ssm.js b/cla-frontend-corporate-console/src/config/scripts/prefetch-ssm.js
index 7b0ba916c..5073ba975 100644
--- a/cla-frontend-corporate-console/src/config/scripts/prefetch-ssm.js
+++ b/cla-frontend-corporate-console/src/config/scripts/prefetch-ssm.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const fs = require('fs');
const RetrieveSSMValues = require('./read-ssm');
diff --git a/cla-frontend-corporate-console/src/config/scripts/read-local.js b/cla-frontend-corporate-console/src/config/scripts/read-local.js
index bd63a32ff..248875612 100644
--- a/cla-frontend-corporate-console/src/config/scripts/read-local.js
+++ b/cla-frontend-corporate-console/src/config/scripts/read-local.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* @param {string[]} variables
diff --git a/cla-frontend-corporate-console/src/config/scripts/read-ssm.js b/cla-frontend-corporate-console/src/config/scripts/read-ssm.js
index 7f002bdb1..80e8ca48b 100644
--- a/cla-frontend-corporate-console/src/config/scripts/read-ssm.js
+++ b/cla-frontend-corporate-console/src/config/scripts/read-ssm.js
@@ -1,7 +1,7 @@
// @ts-check
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const AWS = require('aws-sdk');
diff --git a/cla-frontend-corporate-console/src/config/webpack.config.js b/cla-frontend-corporate-console/src/config/webpack.config.js
index 050b68e29..d08653ded 100644
--- a/cla-frontend-corporate-console/src/config/webpack.config.js
+++ b/cla-frontend-corporate-console/src/config/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const { dev, prod} = require('@ionic/app-scripts/config/webpack.config');
const webpack = require('webpack');
diff --git a/cla-frontend-corporate-console/src/ionic/app/app.component.ts b/cla-frontend-corporate-console/src/ionic/app/app.component.ts
index d4fbf13de..e766448c3 100644
--- a/cla-frontend-corporate-console/src/ionic/app/app.component.ts
+++ b/cla-frontend-corporate-console/src/ionic/app/app.component.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from "@angular/core";
import { Nav, Platform, App } from "ionic-angular";
diff --git a/cla-frontend-corporate-console/src/ionic/app/app.module.ts b/cla-frontend-corporate-console/src/ionic/app/app.module.ts
index 6b5330009..31ddd8fda 100644
--- a/cla-frontend-corporate-console/src/ionic/app/app.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/app/app.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { BrowserModule } from "@angular/platform-browser";
import { NgModule, ErrorHandler } from "@angular/core";
diff --git a/cla-frontend-corporate-console/src/ionic/app/main.ts b/cla-frontend-corporate-console/src/ionic/app/main.ts
index f9165acf7..045cdfa42 100644
--- a/cla-frontend-corporate-console/src/ionic/app/main.ts
+++ b/cla-frontend-corporate-console/src/ionic/app/main.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
diff --git a/cla-frontend-corporate-console/src/ionic/claenv.d.ts b/cla-frontend-corporate-console/src/ionic/claenv.d.ts
index bb45f263d..4412b563f 100644
--- a/cla-frontend-corporate-console/src/ionic/claenv.d.ts
+++ b/cla-frontend-corporate-console/src/ionic/claenv.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
declare module "*.json"
diff --git a/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.module.ts b/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
index 8beff1d65..721b2ad6b 100644
--- a/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.ts b/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.ts
index 82548dee5..4caf90f3f 100644
--- a/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/loading-spinner/loading-spinner.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.module.ts b/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.module.ts
index 80271b97c..7655e9553 100644
--- a/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.ts b/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.ts
index d46a216ae..8e8663f4e 100644
--- a/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/modal-header/modal-header.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { Events } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.module.ts b/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.module.ts
index 26c45996c..b8b71dfb3 100644
--- a/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.ts b/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.ts
index 753d1753c..f2f457ec4 100644
--- a/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.ts
+++ b/cla-frontend-corporate-console/src/ionic/components/sorting-display/sorting-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/cla-frontend-corporate-console/src/ionic/declarations.d.ts b/cla-frontend-corporate-console/src/ionic/declarations.d.ts
index 97c7388bf..6c9d80024 100755
--- a/cla-frontend-corporate-console/src/ionic/declarations.d.ts
+++ b/cla-frontend-corporate-console/src/ionic/declarations.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/*
Declaration files are how the Typescript compiler knows about the type information(or shape) of an object.
diff --git a/cla-frontend-corporate-console/src/ionic/decorators/restricted.ts b/cla-frontend-corporate-console/src/ionic/decorators/restricted.ts
index 5a0ee4a09..8deb6d90b 100644
--- a/cla-frontend-corporate-console/src/ionic/decorators/restricted.ts
+++ b/cla-frontend-corporate-console/src/ionic/decorators/restricted.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export function Restricted(restrictions: any) {
diff --git a/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.module.ts b/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.module.ts
index bb7602d24..5e7e8efad 100644
--- a/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { LoadingDisplayDirective } from './loading-display';
diff --git a/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.ts b/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.ts
index 6988a37a3..f6340004a 100644
--- a/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.ts
+++ b/cla-frontend-corporate-console/src/ionic/directives/loading-display/loading-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Directive, ElementRef, Renderer2, Input, OnChanges, SimpleChange } from '@angular/core';
diff --git a/cla-frontend-corporate-console/src/ionic/layout/cla-footer/cla-footer.ts b/cla-frontend-corporate-console/src/ionic/layout/cla-footer/cla-footer.ts
index 4d967b70d..26ca7bce6 100644
--- a/cla-frontend-corporate-console/src/ionic/layout/cla-footer/cla-footer.ts
+++ b/cla-frontend-corporate-console/src/ionic/layout/cla-footer/cla-footer.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component} from "@angular/core";
diff --git a/cla-frontend-corporate-console/src/ionic/layout/layout.module.ts b/cla-frontend-corporate-console/src/ionic/layout/layout.module.ts
index 275d4bc41..6618f9754 100644
--- a/cla-frontend-corporate-console/src/ionic/layout/layout.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/layout/layout.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { ClaFooter } from "./cla-footer/cla-footer";
diff --git a/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.module.ts
index 8a6123927..c18c639d1 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.ts
index c84fa70c6..23db49c03 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/add-company-modal/add-company-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.module.ts
index 3f7faede7..8b9fa775e 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.ts
index 849ffdb21..e810aa2cd 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/add-manager-modal/add-manager-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component} from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.module.ts
index d73c42c2d..609de75fa 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.ts
index d33a4e1e5..f89a3b796 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/collect-authority-email-modal/collect-authority-email-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ModalController, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.module.ts
index 68820696b..87b5c39a6 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.ts
index 3fa50acd6..f29288d02 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/github-org-whitelist-modal/github-org-whitelist-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component} from '@angular/core';
import {NavParams, ViewController, IonicPage, Events} from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.module.ts
index 4c32c64d5..88fad680b 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.ts
index 77d9a0602..81344dd50 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/projects-ccla-select-modal/projects-ccla-select-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.module.ts b/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.module.ts
index 52c51dac0..9e7850f16 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.ts b/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.ts
index b84523f0a..5e8e6f94b 100644
--- a/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.ts
+++ b/cla-frontend-corporate-console/src/ionic/modals/whitelist-modal/whitelist-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/models/cla-company.ts b/cla-frontend-corporate-console/src/ionic/models/cla-company.ts
index 8374116b2..33663cbba 100644
--- a/cla-frontend-corporate-console/src/ionic/models/cla-company.ts
+++ b/cla-frontend-corporate-console/src/ionic/models/cla-company.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ClaCompanyModel {
diff --git a/cla-frontend-corporate-console/src/ionic/models/cla-manager.ts b/cla-frontend-corporate-console/src/ionic/models/cla-manager.ts
index 3ac61490e..7a3d131b1 100644
--- a/cla-frontend-corporate-console/src/ionic/models/cla-manager.ts
+++ b/cla-frontend-corporate-console/src/ionic/models/cla-manager.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ClaManager {
name: string;
diff --git a/cla-frontend-corporate-console/src/ionic/models/cla-signature.ts b/cla-frontend-corporate-console/src/ionic/models/cla-signature.ts
index 6f12781e9..9c5cb18c4 100644
--- a/cla-frontend-corporate-console/src/ionic/models/cla-signature.ts
+++ b/cla-frontend-corporate-console/src/ionic/models/cla-signature.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ClaSignatureModel {
diff --git a/cla-frontend-corporate-console/src/ionic/models/cla-user.ts b/cla-frontend-corporate-console/src/ionic/models/cla-user.ts
index 70f142240..d4b4ee32c 100644
--- a/cla-frontend-corporate-console/src/ionic/models/cla-user.ts
+++ b/cla-frontend-corporate-console/src/ionic/models/cla-user.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ClaUserModel {
diff --git a/cla-frontend-corporate-console/src/ionic/pages/auth/auth.module.ts b/cla-frontend-corporate-console/src/ionic/pages/auth/auth.module.ts
index 395005fff..db674401c 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/auth/auth.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/auth/auth.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/auth/auth.ts b/cla-frontend-corporate-console/src/ionic/pages/auth/auth.ts
index 73c7ee148..a25164304 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/auth/auth.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/auth/auth.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.module.ts
index 2a4ea15e5..6d1cdb66f 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.ts b/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.ts
index fa4dbf37a..53bf4156b 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/authority-yesno-page/authority-yesno-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.module.ts
index 11e45643c..8a28eebe9 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.ts b/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.ts
index fcf7f75c0..31a1a7635 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/cla-corporate-page/cla-corporate-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.module.ts
index c14a7ddcd..cd85cf326 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.ts b/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.ts
index 574173282..59862b811 100755
--- a/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/companies-page/companies-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { NavController, ModalController, IonicPage } from "ionic-angular";
diff --git a/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.module.ts
index e31712af7..be4d0f364 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.ts b/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.ts
index f05ea8487..04102a44a 100755
--- a/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/company-page/company-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.module.ts
index 36aa9d462..19ddae033 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.ts b/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.ts
index d132cca46..48459e5d4 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/login-page/login-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, IonicPage } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.module.ts b/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.module.ts
index 8ee5d2b01..22362f6fc 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.module.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.ts b/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.ts
index 74ddfea5f..fee3c2fdc 100644
--- a/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.ts
+++ b/cla-frontend-corporate-console/src/ionic/pages/project-page/project-page.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/cla-frontend-corporate-console/src/ionic/service-worker.js b/cla-frontend-corporate-console/src/ionic/service-worker.js
index c4b57b091..09caac3ff 100755
--- a/cla-frontend-corporate-console/src/ionic/service-worker.js
+++ b/cla-frontend-corporate-console/src/ionic/service-worker.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Check out https://googlechrome.github.io/sw-toolbox/docs/master/index.html for
diff --git a/cla-frontend-corporate-console/src/ionic/services/auth.service.ts b/cla-frontend-corporate-console/src/ionic/services/auth.service.ts
index 5ed4921e0..8415603c1 100644
--- a/cla-frontend-corporate-console/src/ionic/services/auth.service.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/auth.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import * as auth0 from "auth0-js";
diff --git a/cla-frontend-corporate-console/src/ionic/services/auth.utils.ts b/cla-frontend-corporate-console/src/ionic/services/auth.utils.ts
index 732445bc9..4791ee839 100644
--- a/cla-frontend-corporate-console/src/ionic/services/auth.utils.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/auth.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export const AUTH_ROUTE = '#/auth';
diff --git a/cla-frontend-corporate-console/src/ionic/services/cinco.service.ts b/cla-frontend-corporate-console/src/ionic/services/cinco.service.ts
index e71108694..d1216e9f5 100755
--- a/cla-frontend-corporate-console/src/ionic/services/cinco.service.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/cinco.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { HttpClient } from './http-client';
diff --git a/cla-frontend-corporate-console/src/ionic/services/cla.env.utils.ts b/cla-frontend-corporate-console/src/ionic/services/cla.env.utils.ts
index 1de6941bb..fc3bd9a67 100644
--- a/cla-frontend-corporate-console/src/ionic/services/cla.env.utils.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/cla.env.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import * as env from '../../config/cla-env-config.json';
export const EnvConfig = env as any;
diff --git a/cla-frontend-corporate-console/src/ionic/services/cla.service.ts b/cla-frontend-corporate-console/src/ionic/services/cla.service.ts
index e02b4e2e1..b01fb8462 100644
--- a/cla-frontend-corporate-console/src/ionic/services/cla.service.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/cla.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Http } from "@angular/http";
diff --git a/cla-frontend-corporate-console/src/ionic/services/http-client.ts b/cla-frontend-corporate-console/src/ionic/services/http-client.ts
index 8c1e11277..964384d7c 100644
--- a/cla-frontend-corporate-console/src/ionic/services/http-client.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/http-client.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { Http, Headers } from '@angular/http';
diff --git a/cla-frontend-corporate-console/src/ionic/services/roles.service.ts b/cla-frontend-corporate-console/src/ionic/services/roles.service.ts
index 4d3c60b5c..737a239ed 100644
--- a/cla-frontend-corporate-console/src/ionic/services/roles.service.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/roles.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Observable } from "rxjs/Observable";
diff --git a/cla-frontend-corporate-console/src/ionic/services/sort.service.ts b/cla-frontend-corporate-console/src/ionic/services/sort.service.ts
index 21da604a3..6f57ec64c 100644
--- a/cla-frontend-corporate-console/src/ionic/services/sort.service.ts
+++ b/cla-frontend-corporate-console/src/ionic/services/sort.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
declare var require: any;
diff --git a/cla-frontend-corporate-console/src/ionic/validators/email.ts b/cla-frontend-corporate-console/src/ionic/validators/email.ts
index ed5ca69f0..4d5001cba 100644
--- a/cla-frontend-corporate-console/src/ionic/validators/email.ts
+++ b/cla-frontend-corporate-console/src/ionic/validators/email.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/cla-frontend-corporate-console/src/package.json b/cla-frontend-corporate-console/src/package.json
index 380ca859f..3fd08dc0d 100755
--- a/cla-frontend-corporate-console/src/package.json
+++ b/cla-frontend-corporate-console/src/package.json
@@ -1,6 +1,6 @@
{
"name": "cla-corporate-console",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"author": "",
"private": true,
"os": [
diff --git a/frontend-project-management-console/edge/package.json b/frontend-project-management-console/edge/package.json
index fc12b3ad4..447f00a89 100644
--- a/frontend-project-management-console/edge/package.json
+++ b/frontend-project-management-console/edge/package.json
@@ -2,7 +2,7 @@
"name": "edge",
"version": "1.0.0",
"main": "index.js",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"prebuild": "yarn install",
"build": "webpack",
diff --git a/frontend-project-management-console/edge/security-headers.js b/frontend-project-management-console/edge/security-headers.js
index c4315b9b2..cd623359b 100644
--- a/frontend-project-management-console/edge/security-headers.js
+++ b/frontend-project-management-console/edge/security-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
function getHeaders(env, isDevServer) {
return {
diff --git a/frontend-project-management-console/edge/src/add-headers.js b/frontend-project-management-console/edge/src/add-headers.js
index ee753aaba..248e1c98a 100644
--- a/frontend-project-management-console/edge/src/add-headers.js
+++ b/frontend-project-management-console/edge/src/add-headers.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
exports.addHeaders = function(event, headerList) {
const { response } = event.Records[0].cf;
diff --git a/frontend-project-management-console/edge/src/add-headers.spec.js b/frontend-project-management-console/edge/src/add-headers.spec.js
index efbdf39e5..f517449a1 100644
--- a/frontend-project-management-console/edge/src/add-headers.spec.js
+++ b/frontend-project-management-console/edge/src/add-headers.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./add-headers');
diff --git a/frontend-project-management-console/edge/src/index.js b/frontend-project-management-console/edge/src/index.js
index 2caaddf4c..33eb978e8 100644
--- a/frontend-project-management-console/edge/src/index.js
+++ b/frontend-project-management-console/edge/src/index.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const addHeaders = require('./add-headers');
const setCacheControl = require('./set-cache-control');
diff --git a/frontend-project-management-console/edge/src/set-cache-control.js b/frontend-project-management-console/edge/src/set-cache-control.js
index b7c0b8ad0..0490263cd 100644
--- a/frontend-project-management-console/edge/src/set-cache-control.js
+++ b/frontend-project-management-console/edge/src/set-cache-control.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Splits a header property in the format 'key=value', or just 'key', and returns an object in the format {key: value}.
diff --git a/frontend-project-management-console/edge/src/set-cache-control.spec.js b/frontend-project-management-console/edge/src/set-cache-control.spec.js
index 677a063ce..9cee1f266 100644
--- a/frontend-project-management-console/edge/src/set-cache-control.spec.js
+++ b/frontend-project-management-console/edge/src/set-cache-control.spec.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const handler = require('./set-cache-control');
diff --git a/frontend-project-management-console/edge/webpack.config.js b/frontend-project-management-console/edge/webpack.config.js
index c7d9874ba..661d4acff 100644
--- a/frontend-project-management-console/edge/webpack.config.js
+++ b/frontend-project-management-console/edge/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const webpack = require('webpack');
const path = require('path');
diff --git a/frontend-project-management-console/package.json b/frontend-project-management-console/package.json
index a81f9da0c..8497636f2 100644
--- a/frontend-project-management-console/package.json
+++ b/frontend-project-management-console/package.json
@@ -1,7 +1,7 @@
{
"name": "frontend-project-management-console",
"version": "0.0.0",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"deploy": "../scripts/deploy-frontend.sh",
"sls": "../node_modules/.bin/serverless",
diff --git a/frontend-project-management-console/src/config/scripts/prefetch-ssm.js b/frontend-project-management-console/src/config/scripts/prefetch-ssm.js
index b9d2cff48..2cde31964 100644
--- a/frontend-project-management-console/src/config/scripts/prefetch-ssm.js
+++ b/frontend-project-management-console/src/config/scripts/prefetch-ssm.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const fs = require('fs');
const RetrieveSSMValues = require('./read-ssm');
diff --git a/frontend-project-management-console/src/config/scripts/read-local.js b/frontend-project-management-console/src/config/scripts/read-local.js
index bd63a32ff..248875612 100644
--- a/frontend-project-management-console/src/config/scripts/read-local.js
+++ b/frontend-project-management-console/src/config/scripts/read-local.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* @param {string[]} variables
diff --git a/frontend-project-management-console/src/config/scripts/read-ssm.js b/frontend-project-management-console/src/config/scripts/read-ssm.js
index 7f002bdb1..80e8ca48b 100644
--- a/frontend-project-management-console/src/config/scripts/read-ssm.js
+++ b/frontend-project-management-console/src/config/scripts/read-ssm.js
@@ -1,7 +1,7 @@
// @ts-check
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const AWS = require('aws-sdk');
diff --git a/frontend-project-management-console/src/config/webpack.config.js b/frontend-project-management-console/src/config/webpack.config.js
index 8dd2f5574..37c1d201c 100644
--- a/frontend-project-management-console/src/config/webpack.config.js
+++ b/frontend-project-management-console/src/config/webpack.config.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
const { dev, prod} = require('@ionic/app-scripts/config/webpack.config');
const webpack = require('webpack');
diff --git a/frontend-project-management-console/src/ionic/app/app.component.ts b/frontend-project-management-console/src/ionic/app/app.component.ts
index 374dae6a2..3c44697e6 100644
--- a/frontend-project-management-console/src/ionic/app/app.component.ts
+++ b/frontend-project-management-console/src/ionic/app/app.component.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from "@angular/core";
import { Nav, Platform, App, Events } from "ionic-angular";
diff --git a/frontend-project-management-console/src/ionic/app/app.module.ts b/frontend-project-management-console/src/ionic/app/app.module.ts
index a359fad60..f10d04b2d 100644
--- a/frontend-project-management-console/src/ionic/app/app.module.ts
+++ b/frontend-project-management-console/src/ionic/app/app.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { BrowserModule } from "@angular/platform-browser";
import { NgModule, ErrorHandler } from "@angular/core";
diff --git a/frontend-project-management-console/src/ionic/app/main.ts b/frontend-project-management-console/src/ionic/app/main.ts
index 548d6b0e0..90b474822 100644
--- a/frontend-project-management-console/src/ionic/app/main.ts
+++ b/frontend-project-management-console/src/ionic/app/main.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
diff --git a/frontend-project-management-console/src/ionic/claenv.d.ts b/frontend-project-management-console/src/ionic/claenv.d.ts
index bb45f263d..4412b563f 100644
--- a/frontend-project-management-console/src/ionic/claenv.d.ts
+++ b/frontend-project-management-console/src/ionic/claenv.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
declare module "*.json"
diff --git a/frontend-project-management-console/src/ionic/components/action-popover/action-popover.module.ts b/frontend-project-management-console/src/ionic/components/action-popover/action-popover.module.ts
index bb673569d..268033d27 100644
--- a/frontend-project-management-console/src/ionic/components/action-popover/action-popover.module.ts
+++ b/frontend-project-management-console/src/ionic/components/action-popover/action-popover.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { ActionPopoverComponent } from './action-popover';
diff --git a/frontend-project-management-console/src/ionic/components/action-popover/action-popover.ts b/frontend-project-management-console/src/ionic/components/action-popover/action-popover.ts
index 2127677bd..326cfae39 100755
--- a/frontend-project-management-console/src/ionic/components/action-popover/action-popover.ts
+++ b/frontend-project-management-console/src/ionic/components/action-popover/action-popover.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, Output, EventEmitter } from '@angular/core';
import { IonicPage, NavParams, ViewController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.module.ts b/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
index 8beff1d65..721b2ad6b 100644
--- a/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
+++ b/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.ts b/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.ts
index 82548dee5..4caf90f3f 100644
--- a/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.ts
+++ b/frontend-project-management-console/src/ionic/components/loading-spinner/loading-spinner.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/components/member-header/member-header.module.ts b/frontend-project-management-console/src/ionic/components/member-header/member-header.module.ts
index 59e8374c6..148db6a67 100644
--- a/frontend-project-management-console/src/ionic/components/member-header/member-header.module.ts
+++ b/frontend-project-management-console/src/ionic/components/member-header/member-header.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/member-header/member-header.ts b/frontend-project-management-console/src/ionic/components/member-header/member-header.ts
index 4c1628925..aeb1f1058 100644
--- a/frontend-project-management-console/src/ionic/components/member-header/member-header.ts
+++ b/frontend-project-management-console/src/ionic/components/member-header/member-header.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
import { NavController, ModalController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.module.ts b/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.module.ts
index 7caab5bc0..7cc00605d 100644
--- a/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.module.ts
+++ b/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.ts b/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.ts
index a344cf799..6514307aa 100644
--- a/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.ts
+++ b/frontend-project-management-console/src/ionic/components/member-navigation/member-navigation.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component, ElementRef, ViewChild, AfterViewChecked } from '@angular/core';
import { ViewController, NavController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/modal-header/modal-header.module.ts b/frontend-project-management-console/src/ionic/components/modal-header/modal-header.module.ts
index 80271b97c..7655e9553 100644
--- a/frontend-project-management-console/src/ionic/components/modal-header/modal-header.module.ts
+++ b/frontend-project-management-console/src/ionic/components/modal-header/modal-header.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/modal-header/modal-header.ts b/frontend-project-management-console/src/ionic/components/modal-header/modal-header.ts
index d46a216ae..8e8663f4e 100644
--- a/frontend-project-management-console/src/ionic/components/modal-header/modal-header.ts
+++ b/frontend-project-management-console/src/ionic/components/modal-header/modal-header.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { Events } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.module.ts b/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.module.ts
index 2c77a579e..ef356d22a 100644
--- a/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.module.ts
+++ b/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.ts b/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.ts
index c28391eda..c2f779bec 100644
--- a/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.ts
+++ b/frontend-project-management-console/src/ionic/components/project-navigation/project-navigation.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component, ElementRef, ViewChild, AfterViewChecked } from '@angular/core';
import { ViewController, NavController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/section-header/section-header.module.ts b/frontend-project-management-console/src/ionic/components/section-header/section-header.module.ts
index 7ec09b3a3..87b25f8e2 100644
--- a/frontend-project-management-console/src/ionic/components/section-header/section-header.module.ts
+++ b/frontend-project-management-console/src/ionic/components/section-header/section-header.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/section-header/section-header.ts b/frontend-project-management-console/src/ionic/components/section-header/section-header.ts
index e2b45c52d..62fd3fd34 100644
--- a/frontend-project-management-console/src/ionic/components/section-header/section-header.ts
+++ b/frontend-project-management-console/src/ionic/components/section-header/section-header.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from "@angular/core";
import { NavController, ModalController } from "ionic-angular";
diff --git a/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.module.ts b/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.module.ts
index 26c45996c..b8b71dfb3 100644
--- a/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.module.ts
+++ b/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.ts b/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.ts
index 753d1753c..f2f457ec4 100644
--- a/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.ts
+++ b/frontend-project-management-console/src/ionic/components/sorting-display/sorting-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Input, Component } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/components/upload-button/upload-button.module.ts b/frontend-project-management-console/src/ionic/components/upload-button/upload-button.module.ts
index af9976f2c..5db05e600 100644
--- a/frontend-project-management-console/src/ionic/components/upload-button/upload-button.module.ts
+++ b/frontend-project-management-console/src/ionic/components/upload-button/upload-button.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/components/upload-button/upload-button.ts b/frontend-project-management-console/src/ionic/components/upload-button/upload-button.ts
index 9606d8751..c6f0f0795 100755
--- a/frontend-project-management-console/src/ionic/components/upload-button/upload-button.ts
+++ b/frontend-project-management-console/src/ionic/components/upload-button/upload-button.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ElementRef, Input, Output, ViewChild, Renderer, EventEmitter } from '@angular/core';
import { PopoverController, ToastController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/declarations.d.ts b/frontend-project-management-console/src/ionic/declarations.d.ts
index 97c7388bf..6c9d80024 100755
--- a/frontend-project-management-console/src/ionic/declarations.d.ts
+++ b/frontend-project-management-console/src/ionic/declarations.d.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/*
Declaration files are how the Typescript compiler knows about the type information(or shape) of an object.
diff --git a/frontend-project-management-console/src/ionic/decorators/restricted.ts b/frontend-project-management-console/src/ionic/decorators/restricted.ts
index 642faaea6..dd0a90acd 100644
--- a/frontend-project-management-console/src/ionic/decorators/restricted.ts
+++ b/frontend-project-management-console/src/ionic/decorators/restricted.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export function Restricted(restrictions: any) {
diff --git a/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.module.ts b/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.module.ts
index bb7602d24..5e7e8efad 100644
--- a/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.module.ts
+++ b/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { LoadingDisplayDirective } from './loading-display';
diff --git a/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.ts b/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.ts
index 6988a37a3..f6340004a 100644
--- a/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.ts
+++ b/frontend-project-management-console/src/ionic/directives/loading-display/loading-display.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Directive, ElementRef, Renderer2, Input, OnChanges, SimpleChange } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/layout/layout.module.ts b/frontend-project-management-console/src/ionic/layout/layout.module.ts
index 275d4bc41..6618f9754 100644
--- a/frontend-project-management-console/src/ionic/layout/layout.module.ts
+++ b/frontend-project-management-console/src/ionic/layout/layout.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { ClaFooter } from "./cla-footer/cla-footer";
diff --git a/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.module.ts b/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.module.ts
index b0a4fc8f3..a81784e9a 100644
--- a/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.ts b/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.ts
index 9eccd4b2a..496f82e32 100644
--- a/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/analytics-config-modal/analytics-config-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage, } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/asset-management-modal/asset-management-modal.module.ts b/frontend-project-management-console/src/ionic/modals/asset-management-modal/asset-management-modal.module.ts
index b060a651f..e913bcc46 100644
--- a/frontend-project-management-console/src/ionic/modals/asset-management-modal/asset-management-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/asset-management-modal/asset-management-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.module.ts b/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.module.ts
index e57cb4ec0..b1fd0ef25 100644
--- a/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.ts b/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.ts
index 4f7a37fad..d34617223 100644
--- a/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/assign-user-modal/assign-user-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, Renderer, ElementRef, ViewChild, } from '@angular/core';
import { NavController, NavParams, ViewController, AlertController, ToastController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.module.ts
index 233bd8271..7016fda26 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.ts
index 0206fda7b..4bd7102b3 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-configure-github-repositories-modal/cla-configure-github-repositories-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component} from '@angular/core';
import {NavParams, ViewController, IonicPage, Events} from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.module.ts
index 414b20940..a8efc9ae3 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.ts
index 3259db275..4293328cb 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-companies-modal/cla-contract-companies-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import {Events, IonicPage, ModalController, NavController, NavParams, ViewController,} from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.module.ts
index bc324c982..efba322f5 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.ts
index e6aa55627..d44e21822 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-config-modal/cla-contract-config-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import {NavController, NavParams, ViewController, IonicPage, Events,} from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.module.ts
index 4bfceedf1..61279fc35 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.ts
index 1aa96e0f9..391665978 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-upload-modal/cla-contract-upload-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { DatePipe } from '@angular/common';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.module.ts
index 925d88620..8f92c8e8c 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.ts
index 1d0c0f678..043cd1751 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-version-modal/cla-contract-version-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.module.ts
index 6dc18b3b8..24b6ca03c 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.ts
index d2132271b..d0d62362e 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-contract-view-signatures-modal/cla-contract-view-signatures-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import {
diff --git a/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.module.ts
index 8153978c1..9333e5c52 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.ts
index a97b47eb4..59020d189 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-corporate-member-options-modal/cla-corporate-member-options-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage, ModalController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.module.ts
index c6c2267e5..2c54c6a2f 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.ts
index f7eb87630..0116bce4b 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-corporate-whitelist-modal/cla-corporate-whitelist-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage, ModalController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.module.ts
index 3bf9b499a..a811cff0a 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.ts
index e9acc25d3..f7f3ac475 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-gerrit-modal/cla-gerrit-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage, Events } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.module.ts
index b1aee6ddc..0fb931db3 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.ts
index 5b4be34f0..49dc799a6 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-organization-app-modal/cla-organization-app-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.module.ts b/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.module.ts
index db84fe503..53d20671e 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.ts b/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.ts
index 2f3b8e672..61b209464 100644
--- a/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/cla-organization-provider-modal/cla-organization-provider-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, NavParams, ViewController, IonicPage, Events } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.module.ts b/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.module.ts
index 0c9dde680..d7fc136b6 100644
--- a/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.ts b/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.ts
index 5749d0f0e..128e5f73c 100644
--- a/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/console-user-update-modal/console-user-update-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef, ViewChild } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.module.ts b/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.module.ts
index 1c9e9880c..cfdda8f36 100644
--- a/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.ts b/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.ts
index 65f7e5374..cca2b52e5 100755
--- a/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/contact-update-modal/contact-update-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef, ViewChild } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.module.ts b/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.module.ts
index 867a7006d..46c018a9c 100644
--- a/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.ts b/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.ts
index 60b109ef0..2423ff3e1 100644
--- a/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/member-modal/member-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.module.ts b/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.module.ts
index b42157596..795de6eff 100644
--- a/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.ts b/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.ts
index 95c29a98f..ab6916c3d 100644
--- a/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/memberships-modal/memberships-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.module.ts b/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.module.ts
index 9df0ae2d2..af611638f 100644
--- a/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.ts b/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.ts
index 0f566f3cc..888c91648 100644
--- a/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/project-user-management-modal/project-user-management-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavParams, ViewController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.module.ts b/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.module.ts
index e2125c746..93e9b7add 100644
--- a/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.module.ts
+++ b/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.ts b/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.ts
index 04d4a86ea..9038b30fc 100644
--- a/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.ts
+++ b/frontend-project-management-console/src/ionic/modals/search-add-contact-modal/search-add-contact-modal.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ChangeDetectorRef } from '@angular/core';
import { NavController, NavParams, ModalController, ViewController, AlertController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/models/member-contact-model.ts b/frontend-project-management-console/src/ionic/models/member-contact-model.ts
index 319fa1991..1ea89b1f1 100644
--- a/frontend-project-management-console/src/ionic/models/member-contact-model.ts
+++ b/frontend-project-management-console/src/ionic/models/member-contact-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class MemberContactModel {
diff --git a/frontend-project-management-console/src/ionic/models/member-model.ts b/frontend-project-management-console/src/ionic/models/member-model.ts
index df016e260..40b0569d2 100644
--- a/frontend-project-management-console/src/ionic/models/member-model.ts
+++ b/frontend-project-management-console/src/ionic/models/member-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class MemberModel {
diff --git a/frontend-project-management-console/src/ionic/models/project-model.ts b/frontend-project-management-console/src/ionic/models/project-model.ts
index edb06d08b..a72e53837 100644
--- a/frontend-project-management-console/src/ionic/models/project-model.ts
+++ b/frontend-project-management-console/src/ionic/models/project-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class ProjectModel {
diff --git a/frontend-project-management-console/src/ionic/models/sfdc-project-model.ts b/frontend-project-management-console/src/ionic/models/sfdc-project-model.ts
index f885649d3..3acd2168b 100644
--- a/frontend-project-management-console/src/ionic/models/sfdc-project-model.ts
+++ b/frontend-project-management-console/src/ionic/models/sfdc-project-model.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export class SFProjectModel {
diff --git a/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.module.ts b/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.module.ts
index 3da032e29..720d4acad 100644
--- a/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.ts b/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.ts
index 52d20187a..b9036b852 100644
--- a/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.ts
+++ b/frontend-project-management-console/src/ionic/pages/account-settings/account-settings.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.module.ts b/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.module.ts
index 8ef96eef7..2d114b38d 100644
--- a/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.ts b/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.ts
index e2337b9cb..92591a812 100644
--- a/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.ts
+++ b/frontend-project-management-console/src/ionic/pages/activity-log/activity-log.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.module.ts b/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.module.ts
index 90161ccfb..30b3299db 100644
--- a/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.ts b/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.ts
index 5ad50a2b7..7c3678b1a 100644
--- a/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-invoices/all-invoices.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-members/all-members.module.ts b/frontend-project-management-console/src/ionic/pages/all-members/all-members.module.ts
index 6a7da8fa7..0e6e541ba 100644
--- a/frontend-project-management-console/src/ionic/pages/all-members/all-members.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-members/all-members.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-members/all-members.ts b/frontend-project-management-console/src/ionic/pages/all-members/all-members.ts
index 29be7b540..0a6fbb2b7 100644
--- a/frontend-project-management-console/src/ionic/pages/all-members/all-members.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-members/all-members.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.module.ts b/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.module.ts
index 85fc1fadc..4a7178d18 100644
--- a/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.ts b/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.ts
index c516e7f25..b7500ad48 100644
--- a/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-projects-logos/all-projects-logos.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.module.ts b/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.module.ts
index 55c533d0d..fec29304b 100644
--- a/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.ts b/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.ts
index d737d7534..20d241e61 100755
--- a/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.ts
+++ b/frontend-project-management-console/src/ionic/pages/all-projects/all-projects.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { NavController, IonicPage } from "ionic-angular";
diff --git a/frontend-project-management-console/src/ionic/pages/auth/auth.module.ts b/frontend-project-management-console/src/ionic/pages/auth/auth.module.ts
index 395005fff..db674401c 100644
--- a/frontend-project-management-console/src/ionic/pages/auth/auth.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/auth/auth.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/auth/auth.ts b/frontend-project-management-console/src/ionic/pages/auth/auth.ts
index 913f9bba2..29aa26d95 100644
--- a/frontend-project-management-console/src/ionic/pages/auth/auth.ts
+++ b/frontend-project-management-console/src/ionic/pages/auth/auth.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.module.ts b/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.module.ts
index 1254008c7..10afda290 100644
--- a/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.ts b/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.ts
index d396f0edd..4f356da6a 100644
--- a/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.ts
+++ b/frontend-project-management-console/src/ionic/pages/cla-contracts-contributors/cla-contracts-contributors.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/console-users/console-users.module.ts b/frontend-project-management-console/src/ionic/pages/console-users/console-users.module.ts
index a1426e5ae..a50291952 100644
--- a/frontend-project-management-console/src/ionic/pages/console-users/console-users.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/console-users/console-users.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/console-users/console-users.ts b/frontend-project-management-console/src/ionic/pages/console-users/console-users.ts
index ec297d93c..597d92cfc 100644
--- a/frontend-project-management-console/src/ionic/pages/console-users/console-users.ts
+++ b/frontend-project-management-console/src/ionic/pages/console-users/console-users.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/pages/login/login.module.ts b/frontend-project-management-console/src/ionic/pages/login/login.module.ts
index 8c30e8d16..b06088518 100644
--- a/frontend-project-management-console/src/ionic/pages/login/login.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/login/login.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/login/login.ts b/frontend-project-management-console/src/ionic/pages/login/login.ts
index 7764d1b8b..ef4901687 100644
--- a/frontend-project-management-console/src/ionic/pages/login/login.ts
+++ b/frontend-project-management-console/src/ionic/pages/login/login.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import { NavController, IonicPage, NavParams } from "ionic-angular";
diff --git a/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.module.ts b/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.module.ts
index 3676670c1..02db1b802 100644
--- a/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.ts b/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.ts
index acf878d6e..07f6b760b 100644
--- a/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.ts
+++ b/frontend-project-management-console/src/ionic/pages/member/member-details/member-details.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/member/member/member.module.ts b/frontend-project-management-console/src/ionic/pages/member/member/member.module.ts
index 1d8648ac2..57ede090b 100644
--- a/frontend-project-management-console/src/ionic/pages/member/member/member.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/member/member/member.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/member/member/member.ts b/frontend-project-management-console/src/ionic/pages/member/member/member.ts
index bbd091f18..6f7296594 100755
--- a/frontend-project-management-console/src/ionic/pages/member/member/member.ts
+++ b/frontend-project-management-console/src/ionic/pages/member/member/member.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project-details/project-details.module.ts b/frontend-project-management-console/src/ionic/pages/project-details/project-details.module.ts
index 77ec3fd74..639914271 100644
--- a/frontend-project-management-console/src/ionic/pages/project-details/project-details.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project-details/project-details.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project-details/project-details.ts b/frontend-project-management-console/src/ionic/pages/project-details/project-details.ts
index 72bdb0a98..2f0ffab03 100644
--- a/frontend-project-management-console/src/ionic/pages/project-details/project-details.ts
+++ b/frontend-project-management-console/src/ionic/pages/project-details/project-details.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from '@angular/core';
import { NavController, NavParams, IonicPage, ModalController, Content } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.module.ts
index 680438b97..86cb630eb 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.ts b/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.ts
index d40cf9d66..2aef9562a 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-analytics/project-analytics.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component, ViewChild } from '@angular/core';
import { DatePipe } from '@angular/common';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.module.ts
index f6c422c9c..692ede300 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.ts b/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.ts
index afd603f05..1d657b507 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-cla-template/project-cla-template.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component, ViewChild} from "@angular/core";
import {
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.module.ts
index c3d65fb91..0aa9569a2 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.ts b/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.ts
index 6bf5e9746..92bc522fa 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-cla/project-cla.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {Component, ViewChild} from "@angular/core";
import {
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.module.ts
index 15b2dcc59..0eb10ef92 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.ts b/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.ts
index a44af9663..e3d5c82d1 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-files/project-files.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.module.ts
index 5f20245be..4fc7585a8 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.ts b/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.ts
index e415a1223..8fd6edc7f 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-groups-create/project-groups-create.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.module.ts
index d8e2937c2..7c75553b0 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.ts b/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.ts
index 93b15a7cc..9be87c106 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-groups/project-groups.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.module.ts b/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.module.ts
index 2b91e8808..936a16cb6 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.ts b/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.ts
index a0f5134c3..f417a602e 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project-members/project-members.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from '@angular/core';
import { NavController, ModalController, NavParams, IonicPage } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project/project.module.ts b/frontend-project-management-console/src/ionic/pages/project/project/project.module.ts
index 833a8f568..93cac91d6 100644
--- a/frontend-project-management-console/src/ionic/pages/project/project/project.module.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project/project.module.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
diff --git a/frontend-project-management-console/src/ionic/pages/project/project/project.ts b/frontend-project-management-console/src/ionic/pages/project/project/project.ts
index 5b140dc15..495c484bf 100755
--- a/frontend-project-management-console/src/ionic/pages/project/project/project.ts
+++ b/frontend-project-management-console/src/ionic/pages/project/project/project.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Component } from "@angular/core";
import {
diff --git a/frontend-project-management-console/src/ionic/service-worker.js b/frontend-project-management-console/src/ionic/service-worker.js
index c4b57b091..09caac3ff 100755
--- a/frontend-project-management-console/src/ionic/service-worker.js
+++ b/frontend-project-management-console/src/ionic/service-worker.js
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
/**
* Check out https://googlechrome.github.io/sw-toolbox/docs/master/index.html for
diff --git a/frontend-project-management-console/src/ionic/services/analytics.service.ts b/frontend-project-management-console/src/ionic/services/analytics.service.ts
index f013363a2..e61d83589 100644
--- a/frontend-project-management-console/src/ionic/services/analytics.service.ts
+++ b/frontend-project-management-console/src/ionic/services/analytics.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
diff --git a/frontend-project-management-console/src/ionic/services/auth.service.ts b/frontend-project-management-console/src/ionic/services/auth.service.ts
index 5ed4921e0..8415603c1 100644
--- a/frontend-project-management-console/src/ionic/services/auth.service.ts
+++ b/frontend-project-management-console/src/ionic/services/auth.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import * as auth0 from "auth0-js";
diff --git a/frontend-project-management-console/src/ionic/services/auth.utils.ts b/frontend-project-management-console/src/ionic/services/auth.utils.ts
index 732445bc9..4791ee839 100644
--- a/frontend-project-management-console/src/ionic/services/auth.utils.ts
+++ b/frontend-project-management-console/src/ionic/services/auth.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
export const AUTH_ROUTE = '#/auth';
diff --git a/frontend-project-management-console/src/ionic/services/cinco.service.ts b/frontend-project-management-console/src/ionic/services/cinco.service.ts
index b0b2c48bc..31c111384 100755
--- a/frontend-project-management-console/src/ionic/services/cinco.service.ts
+++ b/frontend-project-management-console/src/ionic/services/cinco.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Http } from "@angular/http";
diff --git a/frontend-project-management-console/src/ionic/services/cla.env.utils.ts b/frontend-project-management-console/src/ionic/services/cla.env.utils.ts
index c92b0bcef..1d1eefe6d 100644
--- a/frontend-project-management-console/src/ionic/services/cla.env.utils.ts
+++ b/frontend-project-management-console/src/ionic/services/cla.env.utils.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import * as env from '../../config/cla-env-config.json';
//env['cla-api-url'] = 'http://localhost:5000';
diff --git a/frontend-project-management-console/src/ionic/services/cla.service.ts b/frontend-project-management-console/src/ionic/services/cla.service.ts
index 7dd65cbdd..9c09de591 100644
--- a/frontend-project-management-console/src/ionic/services/cla.service.ts
+++ b/frontend-project-management-console/src/ionic/services/cla.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Http, RequestOptions, URLSearchParams } from '@angular/http';
diff --git a/frontend-project-management-console/src/ionic/services/filter.service.ts b/frontend-project-management-console/src/ionic/services/filter.service.ts
index 2a989aa45..32106f926 100644
--- a/frontend-project-management-console/src/ionic/services/filter.service.ts
+++ b/frontend-project-management-console/src/ionic/services/filter.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
diff --git a/frontend-project-management-console/src/ionic/services/http-client.ts b/frontend-project-management-console/src/ionic/services/http-client.ts
index fb81941c2..1efa2118c 100644
--- a/frontend-project-management-console/src/ionic/services/http-client.ts
+++ b/frontend-project-management-console/src/ionic/services/http-client.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { Http, Headers } from '@angular/http';
diff --git a/frontend-project-management-console/src/ionic/services/roles.service.ts b/frontend-project-management-console/src/ionic/services/roles.service.ts
index 2e75152b6..2823e132c 100644
--- a/frontend-project-management-console/src/ionic/services/roles.service.ts
+++ b/frontend-project-management-console/src/ionic/services/roles.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from "@angular/core";
import { Observable } from "rxjs/Observable";
diff --git a/frontend-project-management-console/src/ionic/services/s3.service.ts b/frontend-project-management-console/src/ionic/services/s3.service.ts
index e20ca5f5d..caa4bfa6d 100644
--- a/frontend-project-management-console/src/ionic/services/s3.service.ts
+++ b/frontend-project-management-console/src/ionic/services/s3.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
diff --git a/frontend-project-management-console/src/ionic/services/sort.service.ts b/frontend-project-management-console/src/ionic/services/sort.service.ts
index 32ee27d27..ade14a532 100644
--- a/frontend-project-management-console/src/ionic/services/sort.service.ts
+++ b/frontend-project-management-console/src/ionic/services/sort.service.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { Injectable } from '@angular/core';
declare var require: any;
diff --git a/frontend-project-management-console/src/ionic/validators/calendarlink.ts b/frontend-project-management-console/src/ionic/validators/calendarlink.ts
index 62165be47..700d72d0d 100644
--- a/frontend-project-management-console/src/ionic/validators/calendarlink.ts
+++ b/frontend-project-management-console/src/ionic/validators/calendarlink.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/validators/checkbox.ts b/frontend-project-management-console/src/ionic/validators/checkbox.ts
index f372c1edd..5e69e584a 100644
--- a/frontend-project-management-console/src/ionic/validators/checkbox.ts
+++ b/frontend-project-management-console/src/ionic/validators/checkbox.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/validators/email.ts b/frontend-project-management-console/src/ionic/validators/email.ts
index ed5ca69f0..4d5001cba 100644
--- a/frontend-project-management-console/src/ionic/validators/email.ts
+++ b/frontend-project-management-console/src/ionic/validators/email.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/validators/forbidden.ts b/frontend-project-management-console/src/ionic/validators/forbidden.ts
index d9afa92bb..718fcd41c 100644
--- a/frontend-project-management-console/src/ionic/validators/forbidden.ts
+++ b/frontend-project-management-console/src/ionic/validators/forbidden.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { AbstractControl, ValidatorFn } from '@angular/forms';
diff --git a/frontend-project-management-console/src/ionic/validators/phonenumber.ts b/frontend-project-management-console/src/ionic/validators/phonenumber.ts
index 2b92093df..611bbdc9f 100644
--- a/frontend-project-management-console/src/ionic/validators/phonenumber.ts
+++ b/frontend-project-management-console/src/ionic/validators/phonenumber.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
declare var require: any;
diff --git a/frontend-project-management-console/src/ionic/validators/requireSelfAnd.ts b/frontend-project-management-console/src/ionic/validators/requireSelfAnd.ts
index b8fed5ca9..3072e1cb3 100644
--- a/frontend-project-management-console/src/ionic/validators/requireSelfAnd.ts
+++ b/frontend-project-management-console/src/ionic/validators/requireSelfAnd.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import {
FormGroup,
diff --git a/frontend-project-management-console/src/ionic/validators/url.ts b/frontend-project-management-console/src/ionic/validators/url.ts
index 2ccf7bb31..990ba8723 100644
--- a/frontend-project-management-console/src/ionic/validators/url.ts
+++ b/frontend-project-management-console/src/ionic/validators/url.ts
@@ -1,5 +1,5 @@
// Copyright The Linux Foundation and each contributor to CommunityBridge.
-// SPDX-License-Identifier: AGPL-3.0-or-later
+// SPDX-License-Identifier: MIT
import { FormControl } from '@angular/forms';
diff --git a/frontend-project-management-console/src/package.json b/frontend-project-management-console/src/package.json
index 9d092b5bf..6ee52d086 100755
--- a/frontend-project-management-console/src/package.json
+++ b/frontend-project-management-console/src/package.json
@@ -1,6 +1,6 @@
{
"name": "project-management-console",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"author": "",
"private": true,
"os": [
diff --git a/package.json b/package.json
index 54615fcb7..b59ead628 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "project",
"version": "0.0.0",
- "license": "AGPL-3.0-or-later",
+ "license": "MIT",
"scripts": {
"install-frontend": "./scripts/install-frontend.sh",
"install-backend": "./scripts/install-backend.sh",
diff --git a/release_notes/20190111_initial_release/copy_env_vars.sh b/release_notes/20190111_initial_release/copy_env_vars.sh
index acd64f345..8bd1754d4 100755
--- a/release_notes/20190111_initial_release/copy_env_vars.sh
+++ b/release_notes/20190111_initial_release/copy_env_vars.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script copies SSM env vars from a source AWS account
# to a destination account.
diff --git a/scripts/credential-updates/auth0-credential-update.sh b/scripts/credential-updates/auth0-credential-update.sh
index abd685edd..de9cd2f58 100755
--- a/scripts/credential-updates/auth0-credential-update.sh
+++ b/scripts/credential-updates/auth0-credential-update.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script updates the Auth0 parameters for a given environment. Only
# parameters provided in the list below are updated.
diff --git a/scripts/credential-updates/cla-credentials.sh b/scripts/credential-updates/cla-credentials.sh
index 1141f72d0..6566ca5fc 100755
--- a/scripts/credential-updates/cla-credentials.sh
+++ b/scripts/credential-updates/cla-credentials.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script updates additional vars needed for the CLA
# projects. Only parameters provided in the list below are updated.
diff --git a/scripts/credential-updates/docusign-credential-update.sh b/scripts/credential-updates/docusign-credential-update.sh
index 6770bcf9e..519a1e80e 100755
--- a/scripts/credential-updates/docusign-credential-update.sh
+++ b/scripts/credential-updates/docusign-credential-update.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script updates the DocuSign parameters for a given environment. Only
# parameters provided in the list below are updated.
diff --git a/scripts/credential-updates/get-credentials.sh b/scripts/credential-updates/get-credentials.sh
index 06dac5d56..95197bb9d 100755
--- a/scripts/credential-updates/get-credentials.sh
+++ b/scripts/credential-updates/get-credentials.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script retrieves all credentials from the aws parameter store.
diff --git a/scripts/credential-updates/github-credential-update.sh b/scripts/credential-updates/github-credential-update.sh
index 4bf3c56bd..805f0ebb3 100755
--- a/scripts/credential-updates/github-credential-update.sh
+++ b/scripts/credential-updates/github-credential-update.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script updates the Github parameters for a given environment. Only
# parameters provided in the list below are updated.
diff --git a/scripts/credential-updates/sfdc-credential-update.sh b/scripts/credential-updates/sfdc-credential-update.sh
index 0726df847..f38717df2 100755
--- a/scripts/credential-updates/sfdc-credential-update.sh
+++ b/scripts/credential-updates/sfdc-credential-update.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script updates the SalesForce parameters for a given environment. Only
# parameters provided in the list below are updated.
diff --git a/scripts/credential-updates/upload_logo.sh b/scripts/credential-updates/upload_logo.sh
index e2af04e79..23fbd924d 100755
--- a/scripts/credential-updates/upload_logo.sh
+++ b/scripts/credential-updates/upload_logo.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# file_path
# project_sfdc_id
diff --git a/scripts/delete_old_lambdas.py b/scripts/delete_old_lambdas.py
index 18bf7c541..bcb2bd25a 100644
--- a/scripts/delete_old_lambdas.py
+++ b/scripts/delete_old_lambdas.py
@@ -1,7 +1,7 @@
import boto3
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# python3 delete_old_lambdas.py
def clean_old_lambda_versions():
diff --git a/scripts/deploy-frontend.sh b/scripts/deploy-frontend.sh
index 5934f08b5..99c4f90ed 100755
--- a/scripts/deploy-frontend.sh
+++ b/scripts/deploy-frontend.sh
@@ -2,7 +2,7 @@
#!/usr/bin/env bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
set -e
diff --git a/scripts/feed_pem_key_to_ssm.py b/scripts/feed_pem_key_to_ssm.py
index 800c75203..64f10391a 100644
--- a/scripts/feed_pem_key_to_ssm.py
+++ b/scripts/feed_pem_key_to_ssm.py
@@ -1,5 +1,5 @@
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
import sys
import os
diff --git a/scripts/install-aws-profile.sh b/scripts/install-aws-profile.sh
index 98fd097a3..2fd92ee4b 100755
--- a/scripts/install-aws-profile.sh
+++ b/scripts/install-aws-profile.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
set -e
diff --git a/scripts/install-backend.sh b/scripts/install-backend.sh
index e3d72da32..bfa496079 100755
--- a/scripts/install-backend.sh
+++ b/scripts/install-backend.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
cd cla-backend/
npm install
\ No newline at end of file
diff --git a/scripts/install-frontend.sh b/scripts/install-frontend.sh
index 818da612f..50d89f45a 100755
--- a/scripts/install-frontend.sh
+++ b/scripts/install-frontend.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
yarn install
cd src
diff --git a/scripts/user_perm/put_user_perm.sh b/scripts/user_perm/put_user_perm.sh
index c97483466..b54a8432e 100755
--- a/scripts/user_perm/put_user_perm.sh
+++ b/scripts/user_perm/put_user_perm.sh
@@ -1,7 +1,7 @@
#! /bin/bash
# Copyright The Linux Foundation and each contributor to CommunityBridge.
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# SPDX-License-Identifier: MIT
# This script uploads a user and accompanying permissions to
# the DynamoDB cla-{env}-user-permissions table