-
-
Notifications
You must be signed in to change notification settings - Fork 9
Seats and survey enhancements #201
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
Merged
Merged
Changes from 22 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
a71d8c6
added new parameters for survey repo and prno
MattG57 bb6a991
dropdown autocomplete with validation for survey userId
MattG57 73d141a
Reworked targeting, fixed som little issues with survey via url param…
MattG57 b81f46b
Made some improvements to the target calc logging....added a comment …
MattG57 8169514
added swagger api docs and included oauth info if it is available to …
MattG57 9fd59a8
passed req to getStatus
MattG57 5f40148
fixed data quality issues from spiking per user charts
MattG57 8020f0a
fixing type issues breaking npm build
MattG57 d7ba4a5
more type errors needed fixing
MattG57 f76f771
fixed type errors in target calc service
MattG57 25adfd2
configured more runtime memory for npm
MattG57 d5c62ab
listing all headers so we can diagnose/fix auth header passing
MattG57 6df3c82
increase memory to 6Gig
MattG57 62b56b2
Revamped surveys with usage info
MattG57 8a59b78
Added Survey statistics to the Seats page, so it is becoming the deve…
MattG57 2ed3bae
fixed oom problem, improved targeting logic.
MattG57 5a5abf2
fixed api/seats/id query to work consistently
MattG57 ae2399e
fixed typescript errors
MattG57 ba248a5
fix remaining type error
MattG57 5c8f52c
refactor: improve error handling and type safety in SeatsService methods
MattG57 1946f47
feat: implement duplicate event handling in webhook listeners and add…
MattG57 8bfc91b
feat: add Express server setup and static file serving for Angular app
MattG57 fe2c483
feat: enhance metrics calculations and logging in TargetCalculationSe…
MattG57 120920e
feat: add new metrics fields and update calculations in TargetCalcula…
MattG57 69c430c
feat: update adoption chart yMax value and add targets data loading i…
MattG57 bc1d5e0
feat: update yMax value for adoption chart and improve activity metri…
MattG57 16d2047
feat: improve activity metrics filtering to handle undefined and zero…
MattG57 ca4d469
feat: update chart titles for clarity and adjust y-axis settings in a…
MattG57 01abb20
feat: enhance daily activity chart with new metrics and acceptance ra…
MattG57 c3458fc
lint
austenstone f674eb3
lint
austenstone 8cc2ef1
cleanup
austenstone da26730
cleanup
austenstone 46c969b
fix: resolve template errors by adding missing properties and improvi…
austenstone 836320e
refactor: remove unused import from members.service.ts
austenstone ca19185
fix: update return types for getMemberByLogin and getAllMembers metho…
austenstone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| const express = require('express'); | ||
| const path = require('path'); | ||
| const app = express(); | ||
| // ...existing middleware... | ||
|
|
||
| // serve Angular static files from the real dist output | ||
| const clientAppPath = path.join(__dirname, '../frontend/dist/github-value'); | ||
| app.use(express.static(clientAppPath)); | ||
|
|
||
| // ...any other API routes... | ||
|
|
||
| // all other routes -> index.html in that same folder | ||
| app.get('*', (req, res) => { | ||
| res.sendFile('index.html', { root: clientAppPath }); | ||
| }); | ||
|
|
||
| // ...existing startup code... | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.