comparison Core/Enumerations.cpp @ 1773:613df4362575

New UpdatedAttachment and UpdatedMetadata events in plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 12 Nov 2015 15:24:23 +0100
parents 53e045b5a8ec
children 5ad4e4d92ecb
comparison
equal deleted inserted replaced
1772:53e045b5a8ec 1773:613df4362575
1133 1133
1134 default: 1134 default:
1135 return HttpStatus_500_InternalServerError; 1135 return HttpStatus_500_InternalServerError;
1136 } 1136 }
1137 } 1137 }
1138
1139
1140 bool IsUserContentType(FileContentType type)
1141 {
1142 return (type >= FileContentType_StartUser &&
1143 type <= FileContentType_EndUser);
1144 }
1138 } 1145 }