-
Notifications
You must be signed in to change notification settings - Fork 927
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
Add support for script nonce attributes #496
Add support for script nonce attributes #496
Conversation
33e9a3a
to
d7b6a4f
Compare
@Daniel15 this is good to go, but I'd like another set of eyes to give it a quick look before it gets merged 😄 |
Merging this so it doesn't get stale, let me know if needs modification before shipping. Tested on Mvc4 and CoreMvc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Sorry I never got to this, I think you sent it while I was on vacation.
/// <summary> | ||
/// Gets the site-wide configuration. | ||
/// </summary> | ||
IReactSiteConfiguration Configuration { get; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't there already a getter for this? ReactSiteConfiguration.Configuration
or .Current
or something like that?
I can check later, the prop already existed on the implementation but not
the interface.. don’t remember seeing another one I could use
…On Sun, Mar 4, 2018 at 18:59, Daniel Lo Nigro ***@***.***> wrote:
***@***.**** commented on this pull request.
Thanks. Sorry I never got to this, I think you sent it while I was on
vacation.
------------------------------
In src/React.Core/IReactEnvironment.cs
<#496 (comment)>:
> @@ -110,5 +109,10 @@ public interface IReactEnvironment
/// Returns the currently held JS engine to the pool. (no-op if engine pooling is disabled)
/// </summary>
void ReturnEngineToPool();
+
+ /// <summary>
+ /// Gets the site-wide configuration.
+ /// </summary>
+ IReactSiteConfiguration Configuration { get; }
Isn't there already a getter for this?
ReactSiteConfiguration.Configuration or .Current or something like that?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#496 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA5hFhWbsxbP6a5XAkSahhQRgTXl1l20ks5tbKnSgaJpZM4RdZap>
.
|
Fixes #430, #482, #334