1. 29 Oct, 2021 1 commit
  2. 16 Oct, 2021 2 commits
  3. 09 Oct, 2021 2 commits
  4. 02 Oct, 2021 1 commit
  5. 30 Sep, 2021 1 commit
  6. 15 Sep, 2021 2 commits
  7. 01 Sep, 2021 2 commits
  8. 24 May, 2021 1 commit
  9. 12 Apr, 2021 1 commit
  10. 26 Mar, 2021 1 commit
  11. 23 Mar, 2021 1 commit
  12. 12 Mar, 2021 1 commit
  13. 31 Jan, 2021 1 commit
  14. 29 Jan, 2021 1 commit
    • Adrián Martínez Interactiv4's avatar
      fix: update storage.js to match pageHelper.injectPageMetadata (#2832) · 52304a81
      Adrián Martínez Interactiv4 authored
      * Update storage.js to match pageHelper.injectPageMetadata
      
      At pageHelper.injectPageMetadata references editorKey and tags to build metadata, but this data seems not to be supplied to this function, since page object is only built from specified columns.
      
      As a result, tags are always empty when exporting pages, and editor key appears as undefined.
      
      It happens also with git storage, but may happen with another storage providers.
      
      I run into this issue running Wiki.js 2.5.170 with the following Docker stack:
      
      CONTAINER ID        IMAGE                                   COMMAND                  CREATED             STATUS              PORTS                                         NAMES
      39373979b693        requarks/wiki:2                         "docker-entrypoint.s…"   44 minutes ago      Up 9 minutes        0.0.0.0:80->3000/tcp, 0.0.0.0:443->3443/tcp   wiki
      608de6278aaa        requarks/wiki-update-companion:latest   "dotnet wiki-update-…"   5 months ago        Up 6 hours          80/tcp                                        wiki-update-companion
      12c7b35ba295        postgres:11                             "docker-entrypoint.s…"   5 months ago        Up 6 hours          5432/tcp                                      db
      
      * Provide id to allow to query for tags
      
      * Update git storage to provide editorKey and tags
      52304a81
  15. 09 Dec, 2020 1 commit
    • scienceasdf's avatar
      feat: set analyzer for elasticsearch (#2793) · d8922440
      scienceasdf authored
      * Feature: Custom configuration for elasticsearch
      
      For better search results especially in Chinese, which the standard token analyzer may not work well.
      
      * Set default analyzer in settings when building index
      
      * Remove dangling comma
      d8922440
  16. 02 Nov, 2020 1 commit
    • avioral's avatar
      fix: broken draw io diagram on rtl mode, improve elasticsearch config (#2647) · 089b7850
      avioral authored
      * - Modify elastic settings
      - Add tags field to index
      - Modify elastic search query
      - Remove empty entities from build suggests list
      
      * Fix map parser error
      
      * - Fix broken drawio svg diagram (rtl issue)
      
      * - Restore the spaces in objects to respect the project formatting rules.
      - Omit explanation line
      089b7850
  17. 01 Nov, 2020 2 commits
  18. 26 Oct, 2020 1 commit
  19. 14 Oct, 2020 1 commit
  20. 03 Oct, 2020 1 commit
  21. 21 Sep, 2020 1 commit
  22. 13 Sep, 2020 2 commits
  23. 12 Sep, 2020 1 commit
  24. 10 Sep, 2020 1 commit
  25. 09 Sep, 2020 1 commit
  26. 08 Sep, 2020 2 commits
  27. 06 Sep, 2020 1 commit
  28. 05 Sep, 2020 1 commit
  29. 02 Sep, 2020 1 commit
  30. 31 Aug, 2020 1 commit
  31. 30 Aug, 2020 2 commits
  32. 15 Aug, 2020 1 commit
    • Dan Nicholson's avatar
      feat: fix + enable OIDC auth method (#2282) · d5d368cd
      Dan Nicholson authored
      * fix: pass userinfo URL in oidc strategy
      
      The userinfo URL from the definition was not being provided to the
      passport strategy, which resulted in a type error trying to resolve the
      user's profile. Furthermore, the name of the defined URL was
      inconsistent with all other authentication method URLs.
      
      * fix: pass all necessary scopes to oidc auth method
      
      When no scopes are provided, passport-openidconnect uses only `openid`,
      which does not contain the username or email address. Include `profile`
      and `email` to ensure the necessary claims are included.
      
      * fix: update oidc method to call processProfile correctly
      
      Now the profile object and providerKey are passed to processProfile. The
      usernameClaim no longer has any use as the email address is the
      username.
      
      * fix: mark oidc authentication method as available
      d5d368cd