Skip to content

Commit 2a1f4d3

Browse files
authored
Merge pull request #2184 from BEXIS2/rc
Rc
2 parents ae55297 + c41cfe0 commit 2a1f4d3

File tree

3 files changed

+3
-168
lines changed

3 files changed

+3
-168
lines changed

Components/App/BExIS.App.Bootstrap/Attributes/ValidateAntiForgeryTokenOnPost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace BExIS.App.Bootstrap.Attributes
66
{
7-
public class ValidateAntiForgeryTokenOnPost: ActionFilterAttribute
7+
public class ValidateAntiForgeryTokenOnPost: FilterAttribute, IAuthorizationFilter
88
{
99
public void OnAuthorization(AuthorizationContext filterContext)
1010
{

LICENSE

Lines changed: 0 additions & 165 deletions
This file was deleted.

database update scripts/3.3.3-3.4.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,15 @@ INSERT INTO public.dim_mappingkeys (name,description, url, optional, iscomplex,
195195
SELECT 'email','A email of a creator of the dataset.', 'https://schema.org/email', false, false,
196196
(select id from dim_mappingconcepts where name='BIOSCHEMA-Dataset'),
197197
(SELECT id FROM public.dim_mappingkeys WHERE name='creator'and concept = (SELECT id FROM public.dim_mappingconcepts WHERE name='BIOSCHEMA-Dataset')),
198-
'dataset/creator/familyName'
198+
'dataset/creator/email'
199199
WHERE NOT EXISTS (select * from public.dim_mappingkeys where concept=(select id from dim_mappingconcepts where name='BIOSCHEMA-Dataset') AND xpath='dataset/creator/email');
200200

201201
-- schema.org/creator/affiliation
202202
INSERT INTO public.dim_mappingkeys (name,description, url, optional, iscomplex, concept,parentRef, xpath)
203203
SELECT 'affiliation','An organization that this person is affiliated with. For example, a school/university, a club, or a team.', 'https://schema.org/affiliation', false, false,
204204
(select id from dim_mappingconcepts where name='BIOSCHEMA-Dataset'),
205205
(SELECT id FROM public.dim_mappingkeys WHERE name='creator'and concept = (SELECT id FROM public.dim_mappingconcepts WHERE name='BIOSCHEMA-Dataset')),
206-
'dataset/creator/familyName'
206+
'dataset/creator/affiliation'
207207
WHERE NOT EXISTS (select * from public.dim_mappingkeys where concept=(select id from dim_mappingconcepts where name='BIOSCHEMA-Dataset') AND xpath='dataset/creator/affiliation');
208208

209209
-- Search

0 commit comments

Comments
 (0)