Skip to content

Commit

Permalink
chore: update opencollective sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Feb 25, 2024
1 parent 66f7d1c commit fac5eee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/api/schematype.html
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ <h4 id="example">Example:</h4>
<p>Suppose you are implementing user registration for a website. Users provide
an email and password, which gets saved to mongodb. The email is a string
that you will want to normalize to lower case, in order to avoid one email
having more than one account -- e.g., otherwise, <a href="mailto:&#x61;&#x76;&#x65;&#x6e;&#x75;&#101;&#x40;&#113;&#x2e;&#x63;&#111;&#109;">&#x61;&#x76;&#x65;&#x6e;&#x75;&#101;&#x40;&#113;&#x2e;&#x63;&#111;&#109;</a> can be registered for 2 accounts via <a href="mailto:&#x61;&#x76;&#101;&#110;&#117;&#101;&#x40;&#x71;&#46;&#99;&#111;&#109;">&#x61;&#x76;&#101;&#110;&#117;&#101;&#x40;&#x71;&#46;&#99;&#111;&#109;</a> and <a href="mailto:&#65;&#x76;&#x45;&#110;&#x55;&#101;&#64;&#x51;&#46;&#x43;&#x6f;&#x4d;">&#65;&#x76;&#x45;&#110;&#x55;&#101;&#64;&#x51;&#46;&#x43;&#x6f;&#x4d;</a>.</p>
having more than one account -- e.g., otherwise, <a href="mailto:&#x61;&#118;&#101;&#x6e;&#x75;&#101;&#64;&#x71;&#x2e;&#x63;&#111;&#x6d;">&#x61;&#118;&#101;&#x6e;&#x75;&#101;&#64;&#x71;&#x2e;&#x63;&#111;&#x6d;</a> can be registered for 2 accounts via <a href="mailto:&#x61;&#118;&#101;&#x6e;&#x75;&#x65;&#64;&#113;&#46;&#99;&#x6f;&#109;">&#x61;&#118;&#101;&#x6e;&#x75;&#x65;&#64;&#113;&#46;&#99;&#x6f;&#109;</a> and <a href="mailto:&#x41;&#118;&#x45;&#110;&#x55;&#101;&#64;&#x51;&#x2e;&#x43;&#x6f;&#x4d;">&#x41;&#118;&#x45;&#110;&#x55;&#101;&#64;&#x51;&#x2e;&#x43;&#x6f;&#x4d;</a>.</p>
<p>You can set up email lower case normalization easily via a Mongoose setter.</p>
<pre><code><span class="hljs-keyword">function</span> <span class="hljs-title function_">toLower</span>(<span class="hljs-params">v</span>) {
<span class="hljs-keyword">return</span> v.<span class="hljs-title function_">toLowerCase</span>();
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getters-setters.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h2 id="getters">Getters</h2>
user.<span class="hljs-property">email</span>; <span class="hljs-comment">// **@gmail.com</span>
</code></pre>
<p>Keep in mind that getters do <strong>not</strong> impact the underlying data stored in
MongoDB. If you save <code>user</code>, the <code>email</code> property will be &#39;<a href="mailto:&#x61;&#98;&#x40;&#x67;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;">&#x61;&#98;&#x40;&#x67;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;</a>&#39; in
MongoDB. If you save <code>user</code>, the <code>email</code> property will be &#39;<a href="mailto:&#97;&#x62;&#64;&#103;&#x6d;&#97;&#105;&#108;&#46;&#x63;&#x6f;&#x6d;">&#97;&#x62;&#64;&#103;&#x6d;&#97;&#105;&#108;&#46;&#x63;&#x6f;&#x6d;</a>&#39; in
the database.</p>
<p>By default, Mongoose does <strong>not</strong> execute getters when converting a document to JSON, including <a href="http://expressjs.com/en/4x/api.html#res.json">Express&#39; <code>res.json()</code> function</a>.</p>
<pre><code class="language-javascript">app.<span class="hljs-title function_">get</span>(<span class="hljs-keyword">function</span>(<span class="hljs-params">req, res</span>) {
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/virtuals.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<h2 id="your-first-virtual">Your First Virtual</h2>
<p>Suppose you have a <code>User</code> model. Every user has an <code>email</code>, but you also
want the email&#39;s domain. For example, the domain portion of
&#39;<a href="mailto:&#x74;&#x65;&#x73;&#x74;&#x40;&#103;&#x6d;&#x61;&#105;&#x6c;&#46;&#x63;&#x6f;&#109;">&#x74;&#x65;&#x73;&#x74;&#x40;&#103;&#x6d;&#x61;&#105;&#x6c;&#46;&#x63;&#x6f;&#109;</a>&#39; is &#39;gmail.com&#39;.</p>
&#39;<a href="mailto:&#x74;&#x65;&#x73;&#x74;&#x40;&#103;&#x6d;&#97;&#105;&#x6c;&#46;&#99;&#x6f;&#109;">&#x74;&#x65;&#x73;&#x74;&#x40;&#103;&#x6d;&#97;&#105;&#x6c;&#46;&#99;&#x6f;&#109;</a>&#39; is &#39;gmail.com&#39;.</p>
<p>Below is one way to implement the <code>domain</code> property using a virtual.
You define virtuals on a schema using the <a href="../api/schema.html#schema_Schema-virtual"><code>Schema#virtual()</code> function</a>.</p>
<pre><code class="language-javascript"><span class="hljs-keyword">const</span> userSchema = mongoose.<span class="hljs-title class_">Schema</span>({
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ <h2 id="github-sponsors">GitHub Sponsors</h2>
</div>

<h2 id="sponsors">Sponsors</h2>
<div class="sponsors"><div><a rel="sponsored" href="https://icons8.com/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/c7fe4d70-f085-11ea-9321-73950861b08b.png" style="height:50px"></a><a rel="sponsored" href="https://www.fortunegames.com"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/7e2efbd0-34eb-11ec-bb97-bb117b153637.jpg" style="height:50px"></a><a rel="sponsored" href="https://www.dontpayfull.com"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/84c4ba80-1955-11e8-8343-278614155b3e.png" style="height:50px"></a><a rel="sponsored" href="https://www.partitionwizard.com"><img class="sponsor" src="https://logo.clearbit.com/partitionwizard.com" style="height:50px"></a><a rel="sponsored" href="https://www.turtlebet.com/fi/kaikki-nettikasinot.html"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/47b43a40-be10-11eb-a04a-2bdd567cfa0a.png" style="height:50px"></a><a rel="sponsored" href="https://localizejs.com/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/bf92e080-26a7-11eb-9bd1-97e665135c29.png" style="height:50px"></a><a rel="sponsored" href="https://goread.io/buy-instagram-likes"><img class="sponsor" src="https://goread.io/assets/images/Goreadlogo.png" style="height:50px" alt="Buy Instagram Likes"></a><a rel="sponsored" href="https://www.nettikasinot.media/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/b967f500-cff0-11ea-84f3-9761761f426d.png" style="height:50px"></a><a rel="sponsored" href="https://opencollective.com/incognito692"><img class="sponsor" src="https://next-images.opencollective.com/_next/image?url=%2Fstatic%2Fimages%2Fopencollective-icon.png&amp;w=96&amp;q=75" style="height:50px"></a><a rel="sponsored" href="https://casino.guide/bitcoin/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/e0cbaed0-5365-11ec-b5ec-afb398580c35.png" style="height:50px"></a><a rel="sponsored" href="https://parimatch.in/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/31cb4710-8a38-11ec-8480-7f4a154d92dc.jpg" style="height:50px"></a><a rel="sponsored" href="https://www.socialboosting.com/buy-tiktok-followers"><img class="sponsor" src="https://logo.clearbit.com/socialboosting.com" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-likes"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/19bb95b0-7be3-11ed-8734-4d07568f9c95.png" style="height:50px"></a><a rel="sponsored" href="https://socialboss.org/buy-instagram-likes/"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/logo+SocialBoss.png" style="height:50px" alt="buy Instagram likes"></a><a rel="sponsored" href="https://famoid.com/"><img class="sponsor" src="https://logo.clearbit.com/famoid.com" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-followers"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/eb3228cb-9810-42b0-9758-2a7aad5633ef/Screen%20Shot%202023-07-06%20at%209.08.54%20PM.png" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-comments"><img class="sponsor" src="https://next-images.opencollective.com/_next/image?url=%2Fstatic%2Fimages%2Fopencollective-icon.png&amp;w=96&amp;q=75" style="height:50px"></a><a rel="sponsored" href="https://verovapaat.org/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/a89286a3-b064-4c65-a6ee-7205aaed8b86/verovapaat-org-square.jpg" style="height:50px"></a><a rel="sponsored" href="https://777.ua/ru/games/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/3d0aedd5-9934-4f4f-90f5-d110347ce618/7770slots.png" style="height:50px"></a><a rel="sponsored" href="https://onlinecasinosspelen.com"><img class="sponsor" src="https://logo.clearbit.com/onlinecasinosspelen.com" style="height:50px"></a><a rel="sponsored" href="https://www.stormlikes.net/buy-instagram-followers"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/07524c4d-d44f-4120-8693-30fcaa795b2b/Stormlikes%20Black%20Logo%202400x1800.jpg" style="height:50px"></a><a rel="sponsored" href="https://skweezer.net/buy-instagram-likes"><img class="sponsor" src="https://logo.clearbit.com/skweezer.net" style="height:50px"></a><a rel="sponsored" href="https://www.casinosansdepot.com/toursgratuitesmachineasous.html"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/logocasinosansdepot.png" style="height:50px"></a><a rel="sponsored" href="https://automatenspielex.com/"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/Automatenspiele+LOGO.png" style="height:50px"></a></div></div><div class="sponsors"><p>Sponsor <a href="https://opencollective.com/mongoose">Mongoose on OpenCollective</a> to get your company&#39;s logo above!</p>
<div class="sponsors"><div><a rel="sponsored" href="https://icons8.com/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/c7fe4d70-f085-11ea-9321-73950861b08b.png" style="height:50px"></a><a rel="sponsored" href="https://www.fortunegames.com"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/7e2efbd0-34eb-11ec-bb97-bb117b153637.jpg" style="height:50px"></a><a rel="sponsored" href="https://www.dontpayfull.com"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/84c4ba80-1955-11e8-8343-278614155b3e.png" style="height:50px"></a><a rel="sponsored" href="https://www.partitionwizard.com"><img class="sponsor" src="https://logo.clearbit.com/partitionwizard.com" style="height:50px"></a><a rel="sponsored" href="https://www.turtlebet.com/fi/kaikki-nettikasinot.html"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/47b43a40-be10-11eb-a04a-2bdd567cfa0a.png" style="height:50px"></a><a rel="sponsored" href="https://localizejs.com/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/bf92e080-26a7-11eb-9bd1-97e665135c29.png" style="height:50px"></a><a rel="sponsored" href="https://goread.io/buy-instagram-likes"><img class="sponsor" src="https://goread.io/assets/images/Goreadlogo.png" style="height:50px" alt="Buy Instagram Likes"></a><a rel="sponsored" href="https://www.nettikasinot.media/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/b967f500-cff0-11ea-84f3-9761761f426d.png" style="height:50px"></a><a rel="sponsored" href="https://opencollective.com/incognito692"><img class="sponsor" src="https://next-images.opencollective.com/_next/image?url=%2Fstatic%2Fimages%2Fopencollective-icon.png&amp;w=96&amp;q=75" style="height:50px"></a><a rel="sponsored" href="https://casino.guide/bitcoin/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/e0cbaed0-5365-11ec-b5ec-afb398580c35.png" style="height:50px"></a><a rel="sponsored" href="https://parimatch.in/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/31cb4710-8a38-11ec-8480-7f4a154d92dc.jpg" style="height:50px"></a><a rel="sponsored" href="https://www.socialboosting.com/buy-tiktok-followers"><img class="sponsor" src="https://logo.clearbit.com/socialboosting.com" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-likes"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/19bb95b0-7be3-11ed-8734-4d07568f9c95.png" style="height:50px"></a><a rel="sponsored" href="https://socialboss.org/buy-instagram-likes/"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/logo+SocialBoss.png" style="height:50px" alt="buy Instagram likes"></a><a rel="sponsored" href="https://famoid.com/"><img class="sponsor" src="https://logo.clearbit.com/famoid.com" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-followers"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/eb3228cb-9810-42b0-9758-2a7aad5633ef/Screen%20Shot%202023-07-06%20at%209.08.54%20PM.png" style="height:50px"></a><a rel="sponsored" href="https://twicsy.com/buy-instagram-comments"><img class="sponsor" src="https://next-images.opencollective.com/_next/image?url=%2Fstatic%2Fimages%2Fopencollective-icon.png&amp;w=96&amp;q=75" style="height:50px"></a><a rel="sponsored" href="https://verovapaat.org/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/a89286a3-b064-4c65-a6ee-7205aaed8b86/verovapaat-org-square.jpg" style="height:50px"></a><a rel="sponsored" href="https://777.ua/ru/games/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/3d0aedd5-9934-4f4f-90f5-d110347ce618/7770slots.png" style="height:50px"></a><a rel="sponsored" href="https://onlinecasinosspelen.com"><img class="sponsor" src="https://logo.clearbit.com/onlinecasinosspelen.com" style="height:50px"></a><a rel="sponsored" href="https://www.stormlikes.net/buy-instagram-followers"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/07524c4d-d44f-4120-8693-30fcaa795b2b/Stormlikes%20Black%20Logo%202400x1800.jpg" style="height:50px"></a><a rel="sponsored" href="https://skweezer.net/buy-instagram-likes"><img class="sponsor" src="https://logo.clearbit.com/skweezer.net" style="height:50px"></a><a rel="sponsored" href="https://howsociable.com/buy-youtube-views/"><img class="sponsor" src="https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/8baa2e22-04ce-4c60-b633-72c0bbca478b/1707623616378.png" style="height:50px"></a><a rel="sponsored" href="https://www.casinosansdepot.com/toursgratuitesmachineasous.html"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/logocasinosansdepot.png" style="height:50px"></a><a rel="sponsored" href="https://automatenspielex.com/"><img class="sponsor" src="https://codebarbarian-images.s3.amazonaws.com/Automatenspiele+LOGO.png" style="height:50px"></a></div></div><div class="sponsors"><p>Sponsor <a href="https://opencollective.com/mongoose">Mongoose on OpenCollective</a> to get your company&#39;s logo above!</p>
</div></div></div><p id="footer">Licensed under MIT.</p><script>document.body.className = 'load';</script></body></html>

0 comments on commit fac5eee

Please sign in to comment.