Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation for deleting files (improvement) #791

Merged
merged 9 commits into from
Dec 7, 2020

Conversation

mtrezza
Copy link
Member

@mtrezza mtrezza commented Nov 17, 2020

Improving on #789:

  • Clarified wording; it could be understood that for Parse Server <4.2.0 it is not possible to delete a file using Cloud Code, which is incorrect.
  • Simplified example code; it is not necessary to use a beforeDelete hook the example; given the beforeDelete name, one could assume that it is somehow related to the basic functionality of deleting a file, which it is not.

* commit 'e129790ed587819ecfcaed59fc7ff90ec6ffcfa1': (84 commits)
  Add `cascadeSave` option in ParseObject to JS docs (parse-community#664)
  Update apple sign in documentation (parse-community#662)
  Bump mixin-deep from 1.3.1 to 1.3.2 (parse-community#670)
  Update GraphQL docs with latest changes (parse-community#669)
  remove a bunch of parse cloud references (parse-community#654)
  docs: fixed examples for pipeline in aggregation (parse-community#661)
  Add beta notice to the GraphQL Guide (parse-community#659)
  iOS Documentation Revamp (parse-community#650)
  Fix doc for creating a subscription in javascript (parse-community#658)
  GraphQL Customisation (parse-community#652)
  added PhantAuth authData docs (parse-community#655)
  Fix typo in keys.md (parse-community#656)
  Fix typo in cloud-code.md (parse-community#657)
  add reference to afterFind, add more detail on predefined classes (parse-community#653)
  Add `keys` and `excludeKeys` options to REST docs (parse-community#649)
  document push type and priority keys for notifications (parse-community#639)
  Documentation for Sign In With Apple (parse-community#648)
  Documentation for isDataAvailable (parse-community#647)
  Remove line for 3.x (parse-community#646)
  Add documentation for query.withCount (parse-community#645)
  ...
* commit 'cc489df4a3d8544a52148c079ecaee3d1762108d':
  Adding microsoft oauth doc (parse-community#698)
  Encrypting Current User and Local Storage (parse-community#695)
  Update live-query.md (parse-community#696)
  Update config.md (parse-community#689)
  Fix User Subclass Documentation (parse-community#690)
  remove info about parse.com compatibility (parse-community#686)
@mtrezza mtrezza requested review from acinader, davimacedo and TomWFox and removed request for acinader November 17, 2020 14:01
_includes/js/files.md Outdated Show resolved Hide resolved
@mtrezza
Copy link
Member Author

mtrezza commented Nov 19, 2020

[redacted]

Comment on lines 123 to 126
* Parse Server <4.2.0

The `destroy` method is available since Parse Server 4.2.0, for lower versions use the [REST API]({{ site.baseUrl }}/rest/guide/#deleting-files) to delete a file.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's unnecessary to mention the 4.2.0 requirement twice here. I suggest removing the bullet point. Perhaps it would be nice have a note below the Deleting Files title. Something like this... Available only on Parse Server Cloud Code starting 4.2.0

Copy link
Member Author

@mtrezza mtrezza Nov 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's unnecessary to mention the 4.2.0 requirement twice here.

Yea, that seems redundant. How about:

  • Parse Server <4.2.0
    The destroy method is available since Parse Server 4.2.0, for lower versions Use the REST API to delete a file.

I suggest removing the bullet point.

My thinking was that the docs should always reflect the newest version. Any notes regarding previous versions are becoming negligible and should therefore be below, marked with their own headline or bullet point, ordered by relevance descending. The layout would be:

< DOC FOR NEWEST VERSION, high relevance >

  • Parse Server <4.2.0
    < DOC FOR VERSION <4.2, medium relevance >

  • Parse Server <2.2.0
    < DOC FOR VERSION <2.2, low relevance >

What do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Parse Server <4.2.0
    The destroy method is available since Parse Server 4.2.0, for lower versions Use the REST API to delete a file.

Wording wise that works

My thinking was that the docs should always reflect the newest version. Any notes regarding previous versions are becoming negligible and should therefore be below, marked with their own headline or bullet point, ordered by relevance descending. The layout would be:

< DOC FOR NEWEST VERSION, high relevance >

  • Parse Server <4.2.0
    < DOC FOR VERSION <4.2, medium relevance >
  • Parse Server <2.2.0
    < DOC FOR VERSION <2.2, low relevance >

What do you think?

Ahh, I didn't realise you were using the bullet point as a form of heading. I agree with the hierarchy.

I don't think the layout for the older versions works as the line(s) below aren't indented. I would suggest either having the whole doc on the bullet point or using an actual heading like ###.

Could you also add Available only on Parse Server Cloud Code starting 4.2.0 under neither the main Deleting Files heading?

Copy link
Member Author

@mtrezza mtrezza Nov 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the layout for the older versions works as the line(s) below aren't indented. I would suggest either having the whole doc on the bullet point or using an actual heading like ###.

Right, that makes sense, I'll change that.

Could you also add Available only on Parse Server Cloud Code starting 4.2.0 under neither the main Deleting Files heading?

When I look into the docs, I often stumble upon a "Available since parse server 2.x", and it never fails to irritate me. I think visual real estate should ideally contain only info that is useful, but these notes are not useful for maybe 99% of readers, because they use a version >2.x. Basically, these notes become pretty old pretty fast.

So instead of saying:

Amazing feature

Available since Parse Server 4.2.

Do this...

I would say:

Amazing feature

Do this...

Parse Server <4.2

This feature is not available.

because it would be consistent with this schema:

Amazing feature

Do this...

Parse Server <4.2

Do that instead...

Parse Server <4.0

Do something else instead...

This way the notes are used has headlines and denote their own doc block without interfering with the section that documents the status quo.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find this contradictory, you are saying that a 1 line note at the top irritates you and is not useful but also suggesting documenting potentially multiple older versions below?

Notes about features available on 2.x should probably be removed but personally I like the notes about recent releases at the top as it hopefully helps to prevent people wasting time trying to use features which don't exist on their version and helps to showcase the improvements being made across the platform.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we think the same :)

What I mean is that a line at the top "available since..." is unnecessary for most readers and therefore should be avoided because it is placed before the information the reader is actually looking for.

A line at the bottom "on lower version use workaround..." is not as disturbing since it is placed below the information most readers are looking for.

Now, whether it should be mentioned that a feature is not available or that there is a workaround for lower versions is a different question. I think it should, and there may be better forms of denoting the availability of features.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for the lack of reply!

I'm not sure I agree with your assumptions about 'most readers' but I really don't have the head space to discuss this further at the moment.

I'll merge the PR as it's definitely as improvement regardless!

@TomWFox TomWFox merged commit d368bd1 into parse-community:gh-pages Dec 7, 2020
dblythy added a commit to dblythy/docs that referenced this pull request Sep 14, 2022
commit 11292a7
Author: Niko Diamadis <[email protected]>
Date:   Sat Aug 13 13:48:06 2022 +0200

    docs: fix outdated and incorrectly styled REST API code examples (parse-community#896)

commit 26f98e3
Author: aclec <[email protected]>
Date:   Mon Aug 8 12:02:01 2022 +0200

    fix: update doc with POST request for /loginAs (parse-community#897)

commit 2ceb1f0
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Jul 22 20:10:05 2022 +0200

    refactor: bump tzinfo from 1.2.7 to 1.2.10 (parse-community#887)

commit 490b887
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Jul 20 12:04:31 2022 +0200

    refactor: bump terser from 5.3.7 to 5.14.2 (parse-community#886)

commit 283de62
Author: Martin <[email protected]>
Date:   Sat Jul 2 23:01:11 2022 +0100

    docs: fix json (parse-community#885)

commit bda8566
Author: Martin <[email protected]>
Date:   Sat Jul 2 11:07:56 2022 +0100

    docs: format JSON code blocks as jsonc (parse-community#883)

commit 86d16c0
Author: Jayson Ng <[email protected]>
Date:   Wed Jun 1 08:05:07 2022 +0800

    fix: unclear IoT apps terminology (parse-community#876)

commit dd07185
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu May 19 12:43:49 2022 +0200

    refactor: upgrade nokogiri from 1.13.4 to 1.13.6 (parse-community#873)

commit 88bd1f3
Author: Martin <[email protected]>
Date:   Sat May 14 13:21:44 2022 +0100

    docs: remove compatibility references; add deployment guide (parse-community#871)

commit e663a09
Author: Mosaab Emam <[email protected]>
Date:   Wed Apr 27 13:17:44 2022 +0200

    fix: add commas (parse-community#870)

commit 23108ac
Author: Ali Oğuzhan Yıldız <[email protected]>
Date:   Thu Apr 21 03:13:49 2022 +0300

    docs: add s3 adapter examples for Linode and Backblaze (parse-community#825)

commit feb3dbb
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Apr 13 11:26:03 2022 +0200

    Bump minimist from 1.2.5 to 1.2.6 (parse-community#869)

commit d5f9bf9
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Apr 13 09:33:55 2022 +0200

    Bump nokogiri from 1.13.3 to 1.13.4 (parse-community#868)

commit 99026f4
Author: Corey <[email protected]>
Date:   Wed Apr 13 03:31:15 2022 -0400

    Update keys and excludeKeys to use arrays (parse-community#820)

commit c70c1b2
Author: GormanFletcher <[email protected]>
Date:   Mon Mar 21 21:28:22 2022 -0400

    docs: document the new /loginAs REST endpoint (parse-community#832)

commit 587b930
Author: dblythy <[email protected]>
Date:   Fri Mar 18 09:27:47 2022 +1100

    docs: add requireAnyUserRoles and requireAllUserRoles on cloud validator (parse-community#816)

commit 0ca8a55
Author: dblythy <[email protected]>
Date:   Fri Mar 18 09:23:46 2022 +1100

    Update cloud-code-advanced.md (parse-community#847)

commit 3190f66
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Feb 25 18:53:49 2022 -0800

    Bump nokogiri from 1.12.5 to 1.13.3 (parse-community#864)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.12.5 to 1.13.3.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.12.5...v1.13.3)

    ---
    updated-dependencies:
    - dependency-name: nokogiri
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit cd27bf5
Author: Emmanuel Ihemegbulam <[email protected]>
Date:   Wed Dec 8 19:46:56 2021 +0100

    Fix typo in cloud-code.md (parse-community#860)

commit 2d630e0
Author: Louis D'Hont <[email protected]>
Date:   Thu Nov 25 20:57:45 2021 +0100

    parse-community#857 Changed the GET method to POST on logging in (parse-community#858)

commit 3b4d00b
Author: Xiang Zhou <[email protected]>
Date:   Tue Nov 2 17:42:15 2021 +0800

    Fix the typo of platform. (parse-community#854)

commit 5b3f61c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Oct 4 16:51:21 2021 +0200

    Bump path-parse from 1.0.6 to 1.0.7 (parse-community#841)

    Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
    - [Release notes](https://github.com/jbgutierrez/path-parse/releases)
    - [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

    ---
    updated-dependencies:
    - dependency-name: path-parse
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c520811
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Oct 4 16:50:51 2021 +0200

    Bump nokogiri from 1.11.4 to 1.12.5 (parse-community#849)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.4 to 1.12.5.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.11.4...v1.12.5)

    ---
    updated-dependencies:
    - dependency-name: nokogiri
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit b4dc536
Author: sanjampreet_singh <[email protected]>
Date:   Mon Oct 4 20:19:33 2021 +0530

    Update relay.md (parse-community#852)

commit d32b983
Author: Dev Prakash Sharma <[email protected]>
Date:   Sat Oct 2 22:04:10 2021 +0530

    📙 Updated apple auth adapter key (parse-community#851)

commit fc540e2
Author: Manuel <[email protected]>
Date:   Fri Sep 3 09:59:33 2021 +0200

    add best practice page (parse-community#845)

commit a064a5c
Author: Samuel Denis-D'Ortun <[email protected]>
Date:   Sat Jul 31 18:31:10 2021 -0400

    Fix quotes in code examples (parse-community#839)

commit b2b654c
Author: FandryNoutah <[email protected]>
Date:   Mon Jul 26 23:42:36 2021 +0300

    Need session activation from Parse (parse-community#830)

    * Need session activation from Parse

    After logging in with parseUser, it can be fine if you start session automatically and developers don't need to call PHP session_start() function, or define into the documentation the full use of the session, thanks.

    * Update users.md

    Co-authored-by: Manuel <[email protected]>

commit 710d728
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu Jul 15 21:39:32 2021 +0100

    Bump addressable from 2.7.0 to 2.8.0 (parse-community#835)

    Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.7.0 to 2.8.0.
    - [Release notes](https://github.com/sporkmonger/addressable/releases)
    - [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
    - [Commits](sporkmonger/addressable@addressable-2.7.0...addressable-2.8.0)

    ---
    updated-dependencies:
    - dependency-name: addressable
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit ad266b7
Author: cyobrendan <[email protected]>
Date:   Wed Jun 2 19:22:43 2021 -0600

    Update database.md (parse-community#831)

    Small grammar update I noticed when combing through the docs. Thanks for all truly valuable contributions you guy make.

commit 589b58d
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed May 26 15:34:01 2021 -0700

    Bump browserslist from 4.14.5 to 4.16.6 (parse-community#829)

    Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.14.5 to 4.16.6.
    - [Release notes](https://github.com/browserslist/browserslist/releases)
    - [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md)
    - [Commits](browserslist/browserslist@4.14.5...4.16.6)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4454557
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue May 18 17:59:50 2021 +0100

    Bump nokogiri from 1.11.1 to 1.11.4 (parse-community#828)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.1 to 1.11.4.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.11.1...v1.11.4)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit aea486a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu May 6 23:19:38 2021 +0100

    Bump lodash from 4.17.19 to 4.17.21 (parse-community#827)

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.19 to 4.17.21.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](lodash/lodash@4.17.19...4.17.21)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 128c50d
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Thu May 6 21:16:43 2021 +0100

    Bump underscore from 1.11.0 to 1.12.1 (parse-community#826)

    Bumps [underscore](https://github.com/jashkenas/underscore) from 1.11.0 to 1.12.1.
    - [Release notes](https://github.com/jashkenas/underscore/releases)
    - [Commits](jashkenas/underscore@1.11.0...1.12.1)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 4187fa8
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon May 3 16:00:39 2021 -0700

    Bump rexml from 3.2.4 to 3.2.5 (parse-community#824)

    Bumps [rexml](https://github.com/ruby/rexml) from 3.2.4 to 3.2.5.
    - [Release notes](https://github.com/ruby/rexml/releases)
    - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)
    - [Commits](ruby/rexml@v3.2.4...v3.2.5)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit c500faf
Author: Manuel <[email protected]>
Date:   Thu Apr 15 09:17:53 2021 +0200

    Improve security section (parse-community#823)

    * refactored security section

    * Fixed absolute URLs

commit f46829a
Author: Rikard Teodorsson <[email protected]>
Date:   Wed Apr 7 18:54:14 2021 +0200

    Removed MongoRocks from the parse-server guide (parse-community#822)

    * Removed MongoRocks from the guide

    * Removed link to MongoRocks

commit 4d02e57
Author: dblythy <[email protected]>
Date:   Thu Apr 8 02:32:45 2021 +1000

    Add afterFind Considerations (parse-community#821)

    * add afterFind considerations

    * Update cloud-code.md

commit dcdfe4b
Author: Sam Jarman <[email protected]>
Date:   Thu Feb 4 16:14:56 2021 +1300

    Fix formatting on Deleting Files header (parse-community#815)

    Just needed a space

commit 7dfb2f3
Author: Tom Fox <[email protected]>
Date:   Tue Jan 19 19:11:08 2021 +0000

    Update index.md (parse-community#813)

commit 0398724
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jan 19 10:54:44 2021 -0800

    Bump nokogiri from 1.10.10 to 1.11.1 (parse-community#812)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.10.10 to 1.11.1.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.10.10...v1.11.1)

    Signed-off-by: dependabot[bot] <[email protected]>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit cec1686
Author: CapacitorSet <[email protected]>
Date:   Sat Jan 16 21:50:22 2021 +0100

    Fix enableLocalDataStore usage (parse-community#807)

commit a1c91f3
Author: dblythy <[email protected]>
Date:   Wed Jan 6 03:08:11 2021 +1100

    Update cloud-code.md (parse-community#810)

commit 3235364
Author: Alysson Melo <[email protected]>
Date:   Wed Dec 16 17:03:25 2020 -0300

    Update deploying-heroku-mlab.md (parse-community#802)

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

    * Update deploying-heroku-mlab.md

commit 5a5465e
Author: dblythy <[email protected]>
Date:   Wed Dec 16 02:05:20 2020 +1100

    Fix casing for afterLiveQueryEvent (parse-community#797)

commit c257296
Author: Manuel <[email protected]>
Date:   Tue Dec 15 16:04:30 2020 +0100

    added error code (parse-community#805)

commit 95b5c19
Author: Tom Fox <[email protected]>
Date:   Tue Dec 15 15:00:26 2020 +0000

    Remove info about restricted tokens (parse-community#787)

    * Update sessions.md

    * Update sessions.md

    * remove restricted property

    * Improve Parse for IoT term

commit ae17f02
Author: Alysson Melo <[email protected]>
Date:   Tue Dec 8 16:54:21 2020 -0300

    Delete compatibility.md (parse-community#800)

    * Delete compatibility.md

    Removing not relevant/outdated Parse.com session

    * Update parse-server.md

commit d368bd1
Author: Manuel <[email protected]>
Date:   Mon Dec 7 15:50:50 2020 +0100

    Documentation for deleting files (improvement) (parse-community#791)

    * improved JS doc for deleting file

    * removed required reference to delete file

    * changed bullet point to headline

commit 3191782
Author: Manuel <[email protected]>
Date:   Fri Dec 4 21:52:58 2020 +0100

    corrected incorrect error code (parse-community#804)

commit fa348c4
Author: Alysson Melo <[email protected]>
Date:   Fri Nov 27 11:27:40 2020 -0300

    Update database.md (parse-community#799)

    * Update database.md

    -updated mLAB information

    * Update database.md

    * Update database.md

commit 7a60da0
Author: Alysson Melo <[email protected]>
Date:   Thu Nov 26 11:43:14 2020 -0300

    Update getting-started.md (parse-community#798)

    * Update getting-started.md

    -Removing migration from hosted Parse information
    -Adding some information to better explain  Parse Server to new users

    * Update getting-started.md

commit 7f1a23a
Author: dblythy <[email protected]>
Date:   Fri Nov 20 05:19:09 2020 +1100

    Remove trailing new line from copy text (parse-community#794)

commit 52e01b1
Author: Antonio Davi Macedo Coelho de Castro <[email protected]>
Date:   Wed Nov 18 14:26:41 2020 -0800

    Replace var to const (parse-community#795)

commit 6e2a85a
Author: Hakim Bawa <[email protected]>
Date:   Wed Nov 18 16:23:23 2020 -0500

    Update objects.md (parse-community#793)

    * Update objects.md

    * Update objects.md

commit 9efae05
Author: dblythy <[email protected]>
Date:   Wed Nov 18 09:51:02 2020 +1100

    Copy to clupboard (parse-community#790)

commit 055a1fe
Author: dblythy <[email protected]>
Date:   Wed Nov 18 00:22:34 2020 +1100

    Documentation for deleting files (parse-community#789)

    * Documentation for deleting files

    Closes parse-community#726

    * Update files.md

    * Update files.md

commit b36fc11
Author: Gunnar Oledal <[email protected]>
Date:   Thu Nov 12 22:22:43 2020 +0100

    Clarifying documentation of custom authentication (parse-community#785)

    * Clarifying documentation of custom authentication.

    Documentation on custom authentication was extremely unclear. Tried to clarify a few aspects. That id is required in the authData object. Also what is client-side vs backend code. Very open to feedback and improvements!

    * Update users.md

    * Apply suggestions from code review

    Co-authored-by: Diamond Lewis <[email protected]>
    Co-authored-by: Tom Fox <[email protected]>

commit bd221b7
Author: Diamond Lewis <[email protected]>
Date:   Wed Nov 11 03:40:39 2020 -0600

    Add ES6 Import to JS (parse-community#786)

commit 9b8846b
Author: dblythy <[email protected]>
Date:   Tue Nov 3 07:26:11 2020 +1100

    Update cloud-code.md (parse-community#784)

commit 4275a4c
Author: dblythy <[email protected]>
Date:   Tue Nov 3 04:17:20 2020 +1100

    Cloud Validator Documentation (parse-community#782)

    * Cloud Validator

    * Update cloud-code.md

    * Apply nits from code review

    * Update _includes/cloudcode/cloud-code.md

    Co-authored-by: Tom Fox <[email protected]>

    * Update _includes/cloudcode/cloud-code.md

    Co-authored-by: Tom Fox <[email protected]>

    * Update _includes/cloudcode/cloud-code.md

    Co-authored-by: Tom Fox <[email protected]>

    * Update _includes/cloudcode/cloud-code.md

    Co-authored-by: Tom Fox <[email protected]>

    Co-authored-by: Tom Fox <[email protected]>

commit bd64ec8
Author: dblythy <[email protected]>
Date:   Tue Nov 3 04:15:48 2020 +1100

    afterLiveQueryEvent Triggers (parse-community#773)

    * afterLiveQueryEvent

    * Update cloud-code.md

    * Update cloud-code.md

    * Update cloud-code.md

    * Apply suggestions from code review

    * Context around database operations with LiveQuery

    * add parse server version

    Co-authored-by: Tom Fox <[email protected]>

commit ca9e2f3
Author: Rhuan <[email protected]>
Date:   Mon Nov 2 18:13:33 2020 +0100

    Add keycloak auth (parse-community#703)

    * Add keycloak referering to PR #6376 in parse-server

    * Update _includes/parse-server/third-party-auth.md

    Co-Authored-By: Tom Fox <[email protected]>

    * Update _includes/parse-server/third-party-auth.md

    Co-Authored-By: Tom Fox <[email protected]>

    * Update _includes/parse-server/third-party-auth.md

    Co-Authored-By: Tom Fox <[email protected]>

    * Update _includes/parse-server/third-party-auth.md

    Co-Authored-By: Tom Fox <[email protected]>

    * Update _includes/parse-server/third-party-auth.md

    Co-Authored-By: Tom Fox <[email protected]>

    Co-authored-by: Tom Fox <[email protected]>

commit 37498c6
Author: Mark Nguyen <[email protected]>
Date:   Mon Nov 2 11:59:30 2020 +0700

    Update relations.md (parse-community#783)

    - Fix typo.

commit d136ecf
Author: Corey <[email protected]>
Date:   Mon Oct 26 12:56:56 2020 -0400

    Update file adapter docs (parse-community#780)

    * Update file adapter docs

    * Add file adapter to postgres database docs

    * Fixed available versions

    * Add default file directory

commit 180c5d8
Author: Diamond Lewis <[email protected]>
Date:   Sat Oct 24 04:15:15 2020 -0500

    Enable Live Reload (parse-community#779)

    * Enable Live Reload

    * typo

commit 54a7204
Author: Corey <[email protected]>
Date:   Fri Oct 23 19:27:40 2020 -0400

    Add GridStoreAdapter and FSAdapter Config (parse-community#778)

commit 501344c
Author: Paulo Reis <[email protected]>
Date:   Thu Oct 22 23:00:28 2020 -0300

    Remove fb account kit from docs (parse-community#777)

commit 83a0395
Author: Diamond Lewis <[email protected]>
Date:   Wed Oct 21 17:09:09 2020 -0500

    Replace response.success (parse-community#776)

commit e0d56aa
Author: Diamond Lewis <[email protected]>
Date:   Wed Oct 21 16:51:23 2020 -0500

    chore: Dump Dependencies (parse-community#775)

    * gem dependencies

    * node dependencies

    * Update .gitignore

    * Add License

commit 02030f7
Author: dblythy <[email protected]>
Date:   Wed Oct 21 09:08:53 2020 +1100

    Replace response.success / response.error (parse-community#774)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants