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

Stage #7487

Merged
merged 25 commits into from
Feb 1, 2024
Merged

Stage #7487

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6a3b177
Feat: create new abstraction to for secured server
adkif Jan 28, 2024
d33c47c
fix: escape query with parameters for pagination
rahul-rocket Feb 1, 2024
1e06f82
Merge pull request #7476 from ever-co/fix/-escape-query-parameters
rahul-rocket Feb 1, 2024
b46a705
Merge pull request #7478 from ever-co/develop
evereq Feb 1, 2024
ab9781f
feat: Add SSL factory interface and implementation
adkif Feb 1, 2024
5e432b1
refactor: server process initialization and error handling
adkif Feb 1, 2024
c9d2afa
refactor: local server and SSL port configuration
adkif Feb 1, 2024
873f226
feat: Add Timeout decorator for method timeout functionality
adkif Feb 1, 2024
2e166a9
feat: add ISslFactory and IProxyConfig to interfaces
adkif Feb 1, 2024
a371e2b
feat: create child process factory and observer classes
adkif Feb 1, 2024
a4b8b64
chore: deps
evereq Feb 1, 2024
fbd3f77
refactor: reverse proxy classes to inherit from SecuredProxy
adkif Feb 1, 2024
eb5bd64
chore(deps): bump nodemailer from 6.9.7 to 6.9.9
dependabot[bot] Feb 1, 2024
8e731eb
Merge pull request #7479 from ever-co/dependabot/npm_and_yarn/nodemai…
evereq Feb 1, 2024
fabc7aa
Merge pull request #7480 from ever-co/develop
evereq Feb 1, 2024
e30563a
feat: Introduce API and UI service classes
adkif Feb 1, 2024
8031615
refactor: desktop server creation and management
adkif Feb 1, 2024
a86a924
refactor: server startup and configuration
adkif Feb 1, 2024
c390092
refactor: server dashboard button behavior for improved user feedback
adkif Feb 1, 2024
ad2d2c3
refactor: switch case to handle potential null values
adkif Feb 1, 2024
6a575d2
Merge branch 'develop' of https://github.com/ever-co/ever-gauzy into …
adkif Feb 1, 2024
a644d74
chore: fix build
evereq Feb 1, 2024
7ca4dc0
Merge pull request #7483 from ever-co/develop
evereq Feb 1, 2024
003037a
Merge pull request #7485 from ever-co/fix/desktop-app-bug
evereq Feb 1, 2024
08df6bc
Merge pull request #7486 from ever-co/develop
evereq Feb 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class InvoicesReceivedComponent extends PaginationFilterBaseComponent imp
where: {
sentTo: organizationId,
tenantId,
isEstimate: this.isEstimate === true ? 1 : 0,
isEstimate: this.isEstimate,
invoiceDate: {
startDate: toUTC(startDate).format('YYYY-MM-DD HH:mm:ss'),
endDate: toUTC(endDate).format('YYYY-MM-DD HH:mm:ss')
Expand Down
4 changes: 2 additions & 2 deletions apps/gauzy/src/app/pages/invoices/invoices.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -765,8 +765,8 @@ export class InvoicesComponent extends PaginationFilterBaseComponent implements
where: {
organizationId,
tenantId,
isEstimate: this.isEstimate === true ? 1 : 0,
isArchived: this.includeArchived === true ? 1 : 0,
isEstimate: this.isEstimate,
isArchived: this.includeArchived,
invoiceDate: {
startDate: toUTC(startDate).format('YYYY-MM-DD HH:mm:ss'),
endDate: toUTC(endDate).format('YYYY-MM-DD HH:mm:ss'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ <h4>
style="cursor: pointer"
[settings]="smartTableSettings"
[source]="smartTableSource"
(userRowSelect)="selectItem($event)"
(userRowSelect)="selectProposalTemplate($event)"
></angular2-smart-table>
</div>
<div class="pagination-container">
Expand Down
Loading
Loading