Projects STRLCPY opencti Commits 78e2e185
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    opencti-platform/opencti-graphql/config/schema/opencti.graphql
    skipped 137 lines
    138 138  """
    139 139  type AppInfo {
    140 140   """
    141  - The OpenCTI aplication version
     141 + The OpenCTI application version
    142 142   """
    143 143   version: String!
    144 144   """
    skipped 10000 lines
  • ■ ■ ■ ■ ■
    opencti-platform/opencti-graphql/src/config/conf.js
    skipped 14 lines
    15 15   ABSTRACT_STIX_DOMAIN_OBJECT,
    16 16  } from '../schema/general';
    17 17  import { STIX_SIGHTING_RELATIONSHIP } from '../schema/stixSightingRelationship';
     18 +import pjson from '../../package.json';
    18 19   
    19 20  // https://golang.org/src/crypto/x509/root_linux.go
    20 21  const LINUX_CERTFILES = [
    skipped 94 lines
    115 116   },
    116 117  };
    117 118   
    118  -export const PLATFORM_VERSION = process.env.npm_package_version;
     119 +export const PLATFORM_VERSION = pjson.version;
    119 120   
    120 121  export const booleanConf = (key, defaultValue = true) => {
    121 122   const configValue = nconf.get(key);
    skipped 174 lines
  • ■ ■ ■ ■
    opencti-platform/opencti-graphql/src/generated/graphql.ts
    skipped 44 lines
    45 45   dependencies: Array<DependencyVersion>;
    46 46   /** The OpenCTI api current memory usage */
    47 47   memory?: Maybe<AppMemory>;
    48  - /** The OpenCTI aplication version */
     48 + /** The OpenCTI application version */
    49 49   version: Scalars['String'];
    50 50  };
    51 51   
    skipped 21591 lines
Please wait...
Page is in error, reload to recover