Fix cypress permissions.
- Make `cypress/test.sh` executable
- Add `cypress/videos` and `results` to `.gitignore`. These are cypress test results.
See merge request theappsmith/internal-tools-client!370
Docker Build and Gitlab CI
1. Adding the Dockerfile to build the appsmith-editor image and upload it to our Appsmith DockerHub account when code is merged into release/master.
2. dding the .gitlab-ci.yml file to run Cypress test cases on all merge requests. This ensures that we can continue to improve code quality with each merge.
3. Increasing the memory requirement during `craco build` to 4096 else it doesn't build in a container environment.
See merge request theappsmith/internal-tools-client!366
Updating the communication emails to users for signup, forgot password and invite user flows
Also adding the Origin header to the BaseController create function. This is required by the user creation flow in order to customize the links in the email. For most of the controllers overriding the BaseController, the request header parameter is non-mandatory and can be skipped for testing or otherwise.
See merge request theappsmith/internal-tools-server!219
Also adding the Origin header to the BaseController create function. This is required by the user creation flow in order to customize the links in the email. For most of the controllers overriding the BaseController, the request header parameter is non-mandatory and can be skipped for testing or otherwise.
Feature/cypress test
Cypress test automation for Login and publish app. added cypress test before pre-push
See merge request theappsmith/internal-tools-client!333
Fix/p0 issues 4 single click
- Fix invite users issue where selecting the roles dropdown used to cause a page reload.
- Remove DropTargetMask Component. Use DragLayerComponent to render Grids
- Fix canvas width to 1224px
- Fix n-1 page save issue. This issue caused the previous state of the canvas to be saved. Resulting in the latest changes not being reflected in the published view and on reload
- Remove Roboto font. It is not being used, however, was being downloaded
- Increase the min bottom row offset for the main container to 5.
See merge request theappsmith/internal-tools-client!353
Modifying the user profile endpoint to send organization and application details
For event tracking, we need the organization name and application names that a user is accessing. In order to reduce the number of API calls, we are returning this information along with the enhanced user profile API call `/profile`. Another endpoint was added instead of `/me` to maintain backwards compatibility.
See merge request theappsmith/internal-tools-server!213
In order to create an application with valid permissions, we copy the relevant permissions from the organization of the user. This involves changes to the organizationService and OrganizationRepository as well.
Also moving the argument AclPermission to the custom Repository interface level. This is to ensure that all the service functions can invoke the same repository function with different permissions based on their requirements.