Skip to content

Commit

Permalink
Updated submodules. Major change for file upload and documents suppor…
Browse files Browse the repository at this point in the history
…t on site
  • Loading branch information
bhavberi committed Dec 10, 2024
1 parent dbb4ebf commit 42049b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apis/files
Submodule files updated from 52805c to 7d61a4
2 changes: 1 addition & 1 deletion subgraphs/interfaces
Submodule interfaces updated 6 files
+1 −0 db.py
+17 −0 models.py
+121 −3 mutations.py
+21 −1 otypes.py
+43 −4 queries.py
+21 −0 utils.py
2 changes: 1 addition & 1 deletion web
Submodule web updated 43 files
+1 −0 .imgbotconfig
+719 −1,725 package-lock.json
+0 −1 package.json
+ public/assets/slc-tech-logo-black.png
+0 −1 public/assets/slc-tech-logo-white.svg
+4 −0 src/acl/routes.js
+20 −8 src/actions/files/signed-url/server_action.jsx
+24 −0 src/actions/storagefiles/create/server_action.jsx
+45 −0 src/actions/storagefiles/delete/server_action.jsx
+45 −0 src/actions/storagefiles/update/server_action.jsx
+7 −7 src/app/clubs-council/page.jsx
+29 −0 src/app/docs/[id]/page.jsx
+24 −0 src/app/docs/new/page.jsx
+26 −0 src/app/docs/page.jsx
+1 −0 src/app/events/[id]/page.jsx
+2 −2 src/app/gallery/page.jsx
+1 −1 src/app/page.jsx
+42 −27 src/app/profile/[id]/edit/page.jsx
+27 −19 src/app/profile/[id]/page.jsx
+1 −1 src/app/tech-team/page.jsx
+38 −8 src/components/FileUpload.jsx
+3 −3 src/components/Footer.jsx
+7 −2 src/components/ImageMasonry.jsx
+21 −6 src/components/Layout.jsx
+1 −1 src/components/Logo.jsx
+1 −1 src/components/SLCTechLogo.jsx
+78 −31 src/components/clubs/ClubForm.jsx
+227 −0 src/components/docs/DocForm.jsx
+91 −0 src/components/docs/DocItem.jsx
+128 −0 src/components/docs/DocsList.jsx
+37 −7 src/components/events/EventForm.jsx
+7 −2 src/components/members/MemberCard.jsx
+38 −36 src/components/profile/UserDetails.jsx
+31 −13 src/components/profile/UserForm.jsx
+0 −0 src/components/svg/cc-logo-full-color.svg
+0 −0 src/components/svg/cc-logo-full-white.svg
+0 −0 src/components/svg/life-logo-full-color.svg
+0 −0 src/components/svg/slc-tech-logo.svg
+21 −0 src/gql/mutations/storagefiles.jsx
+2 −2 src/gql/queries/misc.jsx
+24 −0 src/gql/queries/storagefiles.jsx
+5 −0 src/middleware.js
+81 −66 src/utils/files.jsx

0 comments on commit 42049b0

Please sign in to comment.