faalis 2.0.8 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +0 -0
- data/Rakefile +15 -9
- data/app/assets/javascripts/faalis/dashboard/application.js.erb +4 -3
- data/app/assets/javascripts/faalis/dashboard/init.js.coffee +1 -1
- data/{spec/dummy/public/favicon.ico → app/assets/javascripts/faalis/dashboard/lib/amd.js.coffee.erb} +0 -0
- data/app/assets/stylesheets/faalis/dashboard/share.scss +5 -0
- data/app/controllers/faalis/assets_controller.rb +6 -0
- data/app/controllers/faalis/dashboard/user_messages_controller.rb +27 -0
- data/app/models/application_record.rb +3 -0
- data/app/models/faalis/group.rb +4 -3
- data/app/models/faalis/permission.rb +2 -2
- data/app/models/faalis/user.rb +1 -7
- data/app/models/faalis/user_message.rb +6 -0
- data/app/policies/faalis/user_message_policy.rb +9 -0
- data/app/policies/faalis/user_policy.rb +1 -1
- data/app/views/faalis/dashboard/resource/edit.html.slim +1 -1
- data/app/views/faalis/dashboard/resource/show.html.slim +1 -2
- data/app/views/faalis/dashboard/shared/_header.html.erb +2 -2
- data/app/views/faalis/dashboard/user_messages/_form.html.slim +0 -0
- data/app/views/faalis/dashboard/user_messages/create.js.erb +0 -0
- data/app/views/faalis/dashboard/user_messages/destroy.js.erb +0 -0
- data/app/views/faalis/dashboard/user_messages/new.html.slim +72 -0
- data/app/views/layouts/faalis/dashboard.html.erb +2 -1
- data/config/locales/faalis.en.yml +2 -1
- data/config/routes.rb +6 -21
- data/db/migrate/20160310105736_create_faalis_user_messages.rb +16 -0
- data/lib/faalis.rb +1 -1
- data/lib/faalis/configuration.rb +79 -52
- data/lib/faalis/dashboard/dsl.rb +1 -0
- data/lib/faalis/dashboard/models/sidebar.rb +42 -16
- data/lib/faalis/dashboard/sections/resource.rb +152 -130
- data/lib/faalis/dashboard/sections/resource_create.rb +1 -3
- data/lib/faalis/engine.rb +7 -5
- data/lib/faalis/orm.rb +5 -5
- data/lib/faalis/version.rb +1 -1
- data/{spec → test}/dummy/README.rdoc +0 -0
- data/{spec → test}/dummy/Rakefile +0 -0
- data/{spec → test}/dummy/app/assets/javascripts/application.js +0 -0
- data/{spec → test}/dummy/app/assets/javascripts/dashboard/application.js +0 -0
- data/{spec → test}/dummy/app/assets/stylesheets/application.css +0 -0
- data/{spec → test}/dummy/app/assets/stylesheets/dashboard/ltr/application.css +0 -0
- data/{spec → test}/dummy/app/assets/stylesheets/dashboard/rtl/application.css +0 -0
- data/{spec → test}/dummy/app/assets/stylesheets/ltr/application.css +0 -0
- data/{spec → test}/dummy/app/assets/stylesheets/rtl/application.css +0 -0
- data/{spec → test}/dummy/app/controllers/api_controller.rb +0 -0
- data/{spec → test}/dummy/app/controllers/application_controller.rb +0 -0
- data/{spec → test}/dummy/app/controllers/dashboard/application_controller.rb +0 -0
- data/{spec → test}/dummy/app/helpers/application_helper.rb +0 -0
- data/{spec → test}/dummy/app/policies/application_policy.rb +0 -0
- data/{spec → test}/dummy/app/views/layouts/application.html.erb +0 -0
- data/{spec → test}/dummy/bin/bundle +0 -0
- data/{spec → test}/dummy/bin/rails +0 -0
- data/{spec → test}/dummy/bin/rake +0 -0
- data/{spec → test}/dummy/config.ru +0 -0
- data/{spec → test}/dummy/config/application.rb +0 -0
- data/{spec → test}/dummy/config/boot.rb +0 -0
- data/{spec → test}/dummy/config/database.yml +0 -0
- data/{spec → test}/dummy/config/environment.rb +0 -0
- data/{spec → test}/dummy/config/environments/development.rb +0 -0
- data/{spec → test}/dummy/config/environments/production.rb +0 -0
- data/{spec → test}/dummy/config/environments/test.rb +2 -0
- data/{spec → test}/dummy/config/initializers/backtrace_silencers.rb +0 -0
- data/{spec → test}/dummy/config/initializers/devise.rb +0 -0
- data/{spec → test}/dummy/config/initializers/faalis.rb +0 -0
- data/{spec → test}/dummy/config/initializers/faalis_assets.rb +0 -0
- data/{spec → test}/dummy/config/initializers/filter_parameter_logging.rb +0 -0
- data/{spec → test}/dummy/config/initializers/formstatic.rb +0 -0
- data/{spec → test}/dummy/config/initializers/formtastic.rb +0 -0
- data/{spec → test}/dummy/config/initializers/inflections.rb +0 -0
- data/{spec → test}/dummy/config/initializers/kaminari_config.rb +0 -0
- data/{spec → test}/dummy/config/initializers/mime_types.rb +0 -0
- data/{spec → test}/dummy/config/initializers/secret_token.rb +0 -0
- data/{spec → test}/dummy/config/initializers/session_store.rb +0 -0
- data/{spec → test}/dummy/config/initializers/wrap_parameters.rb +0 -0
- data/{spec → test}/dummy/config/locales/en.yml +0 -0
- data/{spec → test}/dummy/config/routes.rb +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/{spec → test}/dummy/lib/templates/slim/scaffold/_form.html.slim +0 -0
- data/test/dummy/log/test.log +0 -0
- data/{spec → test}/dummy/public/404.html +0 -0
- data/{spec → test}/dummy/public/422.html +0 -0
- data/{spec → test}/dummy/public/500.html +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/fabricators/faalis/groups.rb +27 -0
- data/test/fabricators/faalis/permissions.rb +14 -0
- data/test/fabricators/faalis/users.rb +17 -0
- data/test/generators/install_generator_test.rb +84 -0
- data/test/integration/faalis/authentication_test.rb +36 -0
- data/test/integration/faalis/dashboard_test.rb +64 -0
- data/test/test_helper.rb +72 -0
- metadata +291 -150
- metadata.gz.sig +1 -0
- data/app/controllers/faalis/api/v1/conversations_controller.rb +0 -120
- data/app/controllers/faalis/api/v1/groups_controller.rb +0 -71
- data/app/controllers/faalis/api/v1/logs_controller.rb +0 -12
- data/app/controllers/faalis/api/v1/permissions_controller.rb +0 -61
- data/app/controllers/faalis/api/v1/profiles_controller.rb +0 -42
- data/app/controllers/faalis/api/v1/users_controller.rb +0 -75
- data/lib/faalis_application.rb +0 -446
- data/lib/faalis_plugin.rb +0 -477
- data/spec/factories/faalis/groups.rb +0 -31
- data/spec/factories/faalis/permissions.rb +0 -16
- data/spec/factories/faalis/users.rb +0 -23
- data/spec/features/dashboard_spec.rb +0 -36
- data/spec/features/record_not_found_spec.rb +0 -24
- data/spec/features/sign_in_spec.rb +0 -37
- data/spec/generators/install_spec.rb +0 -58
- data/spec/models/faalis/group_spec.rb +0 -32
- data/spec/models/faalis/permission_spec.rb +0 -15
- data/spec/models/faalis/user_spec.rb +0 -100
- data/spec/policies/faalis/admin_only_policy_spec.rb +0 -39
- data/spec/policies/faalis/application_policy_spec.rb +0 -49
- data/spec/spec_helper.rb +0 -89
- data/spec/support/factory_girl.rb +0 -3
metadata
CHANGED
@@ -1,15 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faalis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sameer Rahmani
|
8
8
|
- Behnam Ahmad Khan Beigi
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
|
-
cert_chain:
|
12
|
-
|
11
|
+
cert_chain:
|
12
|
+
- |
|
13
|
+
-----BEGIN CERTIFICATE-----
|
14
|
+
MIIDaDCCAlCgAwIBAgIBATANBgkqhkiG9w0BAQUFADA9MREwDwYDVQQDDAhseHNh
|
15
|
+
bWVlcjETMBEGCgmSJomT8ixkARkWA2dudTETMBEGCgmSJomT8ixkARkWA29yZzAe
|
16
|
+
Fw0xNjA0MDkwOTU2NTlaFw0xNzA0MDkwOTU2NTlaMD0xETAPBgNVBAMMCGx4c2Ft
|
17
|
+
ZWVyMRMwEQYKCZImiZPyLGQBGRYDZ251MRMwEQYKCZImiZPyLGQBGRYDb3JnMIIB
|
18
|
+
IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoynu3mQH6Frf1qQnqEFzmBfj
|
19
|
+
u+6oRNs55zVQi5S3YJ0bXUSOhtAfBQ4i8BOcFKBULyVBvbJervFP+9t7H33miaev
|
20
|
+
KQgR/QU2Gvgi5TTA48t38n/SlNLzCMKdFHqhJcZ33kf0J/ZnvNGewevDSXRQFWxz
|
21
|
+
vFbHzbzZPT2Bv8SoDpollAfkjx3CTSbreKIsEwA3kYKyeKOnJAso+fMDoXZBnKWm
|
22
|
+
ICfBXzcWrnCRob7bOIHMKqH9dilP3I6pLPDl6v4HD2iLbdeHJXtWa+f0PC/iwyqI
|
23
|
+
p1uGsiNwRT33tfXAD9CHnF1tkKVOegf1iZlRQjkxX1wrKldCMXRJsDgBSP8yLQID
|
24
|
+
AQABo3MwcTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFQiOeeK9
|
25
|
+
LHfZgFmrXcC1Vk70IFkwGwYDVR0RBBQwEoEQbHhzYW1lZXJAZ251Lm9yZzAbBgNV
|
26
|
+
HRIEFDASgRBseHNhbWVlckBnbnUub3JnMA0GCSqGSIb3DQEBBQUAA4IBAQBPzlyO
|
27
|
+
ydG7m2tjP9DkZl/Jw8Paeqi4OQL2tPudgN+nVyx0yb6/6ow11xtc+Q+cI42ecbqJ
|
28
|
+
8DNP1M9JuYbNiYb1ZNteyMNavAMyd+Ts+XCtbwe5Cdn7yINFAhdv/CQ3d3pMk76J
|
29
|
+
lgMRZV+lB5qpfPxIOzoTlRfsNAnmOKq4hloZp4RFQV0n+s9OvSBBjICptu5RkilM
|
30
|
+
kPaeTjT5a10PduReeTaQZtQybKkCPsdWBPKy3gNrEEQ+DIUi26lhYOhgvbu8wWRk
|
31
|
+
ge9CIZowYamI/vvfSApoebxfKQrV8RTkuhxfkna/XvPQS0Qej6X3vjJ8z5bS5vLo
|
32
|
+
+4LSCtONiaAAc/sP
|
33
|
+
-----END CERTIFICATE-----
|
34
|
+
date: 2016-04-24 00:00:00.000000000 Z
|
13
35
|
dependencies:
|
14
36
|
- !ruby/object:Gem::Dependency
|
15
37
|
name: rails
|
@@ -17,14 +39,14 @@ dependencies:
|
|
17
39
|
requirements:
|
18
40
|
- - ">="
|
19
41
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
42
|
+
version: '0'
|
21
43
|
type: :runtime
|
22
44
|
prerelease: false
|
23
45
|
version_requirements: !ruby/object:Gem::Requirement
|
24
46
|
requirements:
|
25
47
|
- - ">="
|
26
48
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
49
|
+
version: '0'
|
28
50
|
- !ruby/object:Gem::Dependency
|
29
51
|
name: omniauth
|
30
52
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,6 +103,20 @@ dependencies:
|
|
81
103
|
- - ">="
|
82
104
|
- !ruby/object:Gem::Version
|
83
105
|
version: '0'
|
106
|
+
- !ruby/object:Gem::Dependency
|
107
|
+
name: amd
|
108
|
+
requirement: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
type: :runtime
|
114
|
+
prerelease: false
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0'
|
84
120
|
- !ruby/object:Gem::Dependency
|
85
121
|
name: pundit
|
86
122
|
requirement: !ruby/object:Gem::Requirement
|
@@ -249,20 +285,6 @@ dependencies:
|
|
249
285
|
- - ">="
|
250
286
|
- !ruby/object:Gem::Version
|
251
287
|
version: '0'
|
252
|
-
- !ruby/object:Gem::Dependency
|
253
|
-
name: rails-assets-sugar
|
254
|
-
requirement: !ruby/object:Gem::Requirement
|
255
|
-
requirements:
|
256
|
-
- - '='
|
257
|
-
- !ruby/object:Gem::Version
|
258
|
-
version: 1.4.1
|
259
|
-
type: :runtime
|
260
|
-
prerelease: false
|
261
|
-
version_requirements: !ruby/object:Gem::Requirement
|
262
|
-
requirements:
|
263
|
-
- - '='
|
264
|
-
- !ruby/object:Gem::Version
|
265
|
-
version: 1.4.1
|
266
288
|
- !ruby/object:Gem::Dependency
|
267
289
|
name: execjs
|
268
290
|
requirement: !ruby/object:Gem::Requirement
|
@@ -362,7 +384,7 @@ dependencies:
|
|
362
384
|
- !ruby/object:Gem::Version
|
363
385
|
version: '0'
|
364
386
|
- !ruby/object:Gem::Dependency
|
365
|
-
name:
|
387
|
+
name: minitest-rails
|
366
388
|
requirement: !ruby/object:Gem::Requirement
|
367
389
|
requirements:
|
368
390
|
- - ">="
|
@@ -376,7 +398,21 @@ dependencies:
|
|
376
398
|
- !ruby/object:Gem::Version
|
377
399
|
version: '0'
|
378
400
|
- !ruby/object:Gem::Dependency
|
379
|
-
name:
|
401
|
+
name: guard
|
402
|
+
requirement: !ruby/object:Gem::Requirement
|
403
|
+
requirements:
|
404
|
+
- - ">="
|
405
|
+
- !ruby/object:Gem::Version
|
406
|
+
version: '0'
|
407
|
+
type: :development
|
408
|
+
prerelease: false
|
409
|
+
version_requirements: !ruby/object:Gem::Requirement
|
410
|
+
requirements:
|
411
|
+
- - ">="
|
412
|
+
- !ruby/object:Gem::Version
|
413
|
+
version: '0'
|
414
|
+
- !ruby/object:Gem::Dependency
|
415
|
+
name: rb-fsevent
|
380
416
|
requirement: !ruby/object:Gem::Requirement
|
381
417
|
requirements:
|
382
418
|
- - ">="
|
@@ -403,6 +439,118 @@ dependencies:
|
|
403
439
|
- - ">="
|
404
440
|
- !ruby/object:Gem::Version
|
405
441
|
version: '0'
|
442
|
+
- !ruby/object:Gem::Dependency
|
443
|
+
name: connection_pool
|
444
|
+
requirement: !ruby/object:Gem::Requirement
|
445
|
+
requirements:
|
446
|
+
- - ">="
|
447
|
+
- !ruby/object:Gem::Version
|
448
|
+
version: '0'
|
449
|
+
type: :development
|
450
|
+
prerelease: false
|
451
|
+
version_requirements: !ruby/object:Gem::Requirement
|
452
|
+
requirements:
|
453
|
+
- - ">="
|
454
|
+
- !ruby/object:Gem::Version
|
455
|
+
version: '0'
|
456
|
+
- !ruby/object:Gem::Dependency
|
457
|
+
name: launchy
|
458
|
+
requirement: !ruby/object:Gem::Requirement
|
459
|
+
requirements:
|
460
|
+
- - ">="
|
461
|
+
- !ruby/object:Gem::Version
|
462
|
+
version: '0'
|
463
|
+
type: :development
|
464
|
+
prerelease: false
|
465
|
+
version_requirements: !ruby/object:Gem::Requirement
|
466
|
+
requirements:
|
467
|
+
- - ">="
|
468
|
+
- !ruby/object:Gem::Version
|
469
|
+
version: '0'
|
470
|
+
- !ruby/object:Gem::Dependency
|
471
|
+
name: minitest-reporters
|
472
|
+
requirement: !ruby/object:Gem::Requirement
|
473
|
+
requirements:
|
474
|
+
- - ">="
|
475
|
+
- !ruby/object:Gem::Version
|
476
|
+
version: '0'
|
477
|
+
type: :development
|
478
|
+
prerelease: false
|
479
|
+
version_requirements: !ruby/object:Gem::Requirement
|
480
|
+
requirements:
|
481
|
+
- - ">="
|
482
|
+
- !ruby/object:Gem::Version
|
483
|
+
version: '0'
|
484
|
+
- !ruby/object:Gem::Dependency
|
485
|
+
name: mocha
|
486
|
+
requirement: !ruby/object:Gem::Requirement
|
487
|
+
requirements:
|
488
|
+
- - ">="
|
489
|
+
- !ruby/object:Gem::Version
|
490
|
+
version: '0'
|
491
|
+
type: :development
|
492
|
+
prerelease: false
|
493
|
+
version_requirements: !ruby/object:Gem::Requirement
|
494
|
+
requirements:
|
495
|
+
- - ">="
|
496
|
+
- !ruby/object:Gem::Version
|
497
|
+
version: '0'
|
498
|
+
- !ruby/object:Gem::Dependency
|
499
|
+
name: poltergeist
|
500
|
+
requirement: !ruby/object:Gem::Requirement
|
501
|
+
requirements:
|
502
|
+
- - ">="
|
503
|
+
- !ruby/object:Gem::Version
|
504
|
+
version: '0'
|
505
|
+
type: :development
|
506
|
+
prerelease: false
|
507
|
+
version_requirements: !ruby/object:Gem::Requirement
|
508
|
+
requirements:
|
509
|
+
- - ">="
|
510
|
+
- !ruby/object:Gem::Version
|
511
|
+
version: '0'
|
512
|
+
- !ruby/object:Gem::Dependency
|
513
|
+
name: fabrication
|
514
|
+
requirement: !ruby/object:Gem::Requirement
|
515
|
+
requirements:
|
516
|
+
- - ">="
|
517
|
+
- !ruby/object:Gem::Version
|
518
|
+
version: '0'
|
519
|
+
type: :development
|
520
|
+
prerelease: false
|
521
|
+
version_requirements: !ruby/object:Gem::Requirement
|
522
|
+
requirements:
|
523
|
+
- - ">="
|
524
|
+
- !ruby/object:Gem::Version
|
525
|
+
version: '0'
|
526
|
+
- !ruby/object:Gem::Dependency
|
527
|
+
name: minitest-rails-capybara
|
528
|
+
requirement: !ruby/object:Gem::Requirement
|
529
|
+
requirements:
|
530
|
+
- - ">="
|
531
|
+
- !ruby/object:Gem::Version
|
532
|
+
version: '0'
|
533
|
+
type: :development
|
534
|
+
prerelease: false
|
535
|
+
version_requirements: !ruby/object:Gem::Requirement
|
536
|
+
requirements:
|
537
|
+
- - ">="
|
538
|
+
- !ruby/object:Gem::Version
|
539
|
+
version: '0'
|
540
|
+
- !ruby/object:Gem::Dependency
|
541
|
+
name: minitest-around
|
542
|
+
requirement: !ruby/object:Gem::Requirement
|
543
|
+
requirements:
|
544
|
+
- - ">="
|
545
|
+
- !ruby/object:Gem::Version
|
546
|
+
version: '0'
|
547
|
+
type: :development
|
548
|
+
prerelease: false
|
549
|
+
version_requirements: !ruby/object:Gem::Requirement
|
550
|
+
requirements:
|
551
|
+
- - ">="
|
552
|
+
- !ruby/object:Gem::Version
|
553
|
+
version: '0'
|
406
554
|
- !ruby/object:Gem::Dependency
|
407
555
|
name: database_cleaner
|
408
556
|
requirement: !ruby/object:Gem::Requirement
|
@@ -418,7 +566,7 @@ dependencies:
|
|
418
566
|
- !ruby/object:Gem::Version
|
419
567
|
version: '0'
|
420
568
|
- !ruby/object:Gem::Dependency
|
421
|
-
name:
|
569
|
+
name: guard-minitest
|
422
570
|
requirement: !ruby/object:Gem::Requirement
|
423
571
|
requirements:
|
424
572
|
- - ">="
|
@@ -478,6 +626,7 @@ files:
|
|
478
626
|
- app/assets/javascripts/faalis/dashboard/functions.js.erb
|
479
627
|
- app/assets/javascripts/faalis/dashboard/init.js.coffee
|
480
628
|
- app/assets/javascripts/faalis/dashboard/lib/actions.js
|
629
|
+
- app/assets/javascripts/faalis/dashboard/lib/amd.js.coffee.erb
|
481
630
|
- app/assets/javascripts/faalis/dashboard/lib/flash_message.js
|
482
631
|
- app/assets/javascripts/faalis/dashboard/lib/locale.js
|
483
632
|
- app/assets/javascripts/faalis/dashboard/lib/misc.js
|
@@ -504,17 +653,13 @@ files:
|
|
504
653
|
- app/assets/stylesheets/faalis/simple/rtl/application.css
|
505
654
|
- app/assets/stylesheets/faalis/simple/rtl/rtl.scss
|
506
655
|
- app/assets/stylesheets/faalis/simple/share.scss
|
507
|
-
- app/controllers/faalis/api/v1/conversations_controller.rb
|
508
|
-
- app/controllers/faalis/api/v1/groups_controller.rb
|
509
|
-
- app/controllers/faalis/api/v1/logs_controller.rb
|
510
|
-
- app/controllers/faalis/api/v1/permissions_controller.rb
|
511
|
-
- app/controllers/faalis/api/v1/profiles_controller.rb
|
512
|
-
- app/controllers/faalis/api/v1/users_controller.rb
|
513
656
|
- app/controllers/faalis/api_controller.rb
|
514
657
|
- app/controllers/faalis/application_controller.rb
|
658
|
+
- app/controllers/faalis/assets_controller.rb
|
515
659
|
- app/controllers/faalis/dashboard/application_controller.rb
|
516
660
|
- app/controllers/faalis/dashboard/groups_controller.rb
|
517
661
|
- app/controllers/faalis/dashboard/profile_controller.rb
|
662
|
+
- app/controllers/faalis/dashboard/user_messages_controller.rb
|
518
663
|
- app/controllers/faalis/dashboard/users_controller.rb
|
519
664
|
- app/controllers/faalis/dashboard_controller.rb
|
520
665
|
- app/controllers/faalis/omniauth/callbacks_controller.rb
|
@@ -523,6 +668,7 @@ files:
|
|
523
668
|
- app/helpers/faalis/groups_helper.rb
|
524
669
|
- app/helpers/faalis/home_helper.rb
|
525
670
|
- app/helpers/faalis/users_helper.rb
|
671
|
+
- app/models/application_record.rb
|
526
672
|
- app/models/faalis/concerns/assignment.rb
|
527
673
|
- app/models/faalis/concerns/user/auth_definitions.rb
|
528
674
|
- app/models/faalis/concerns/user/gravatar.rb
|
@@ -533,9 +679,11 @@ files:
|
|
533
679
|
- app/models/faalis/permission.rb
|
534
680
|
- app/models/faalis/permissions/auth.rb
|
535
681
|
- app/models/faalis/user.rb
|
682
|
+
- app/models/faalis/user_message.rb
|
536
683
|
- app/policies/faalis/admin_only_policy.rb
|
537
684
|
- app/policies/faalis/application_policy.rb
|
538
685
|
- app/policies/faalis/group_policy.rb
|
686
|
+
- app/policies/faalis/user_message_policy.rb
|
539
687
|
- app/policies/faalis/user_policy.rb
|
540
688
|
- app/views/angular/auth/groups/details.html
|
541
689
|
- app/views/angular/auth/groups/index.html
|
@@ -637,6 +785,10 @@ files:
|
|
637
785
|
- app/views/faalis/dashboard/shared/_sidebar.html.erb
|
638
786
|
- app/views/faalis/dashboard/shared/_toolbar.html.slim
|
639
787
|
- app/views/faalis/dashboard/shared/errors.js.erb
|
788
|
+
- app/views/faalis/dashboard/user_messages/_form.html.slim
|
789
|
+
- app/views/faalis/dashboard/user_messages/create.js.erb
|
790
|
+
- app/views/faalis/dashboard/user_messages/destroy.js.erb
|
791
|
+
- app/views/faalis/dashboard/user_messages/new.html.slim
|
640
792
|
- app/views/faalis/dashboard/users/_form.html.slim
|
641
793
|
- app/views/faalis/dashboard/users/_password_form.html.slim
|
642
794
|
- app/views/faalis/dashboard/users/create.js.erb
|
@@ -674,6 +826,7 @@ files:
|
|
674
826
|
- db/migrate/20131123120422_add_permissions_groups_table.rb
|
675
827
|
- db/migrate/20140613120923_add_users_groups_table.rb
|
676
828
|
- db/migrate/20151122115129_add_uniqueness_index_to_users_groups.rb
|
829
|
+
- db/migrate/20160310105736_create_faalis_user_messages.rb
|
677
830
|
- db/seeds.rb
|
678
831
|
- lib/faalis.rb
|
679
832
|
- lib/faalis/action_dispatch.rb
|
@@ -723,8 +876,6 @@ files:
|
|
723
876
|
- lib/faalis/orm.rb
|
724
877
|
- lib/faalis/route.rb
|
725
878
|
- lib/faalis/version.rb
|
726
|
-
- lib/faalis_application.rb
|
727
|
-
- lib/faalis_plugin.rb
|
728
879
|
- lib/generators/faalis/USAGE
|
729
880
|
- lib/generators/faalis/install_all_generator.rb
|
730
881
|
- lib/generators/faalis/install_generator.rb
|
@@ -764,66 +915,61 @@ files:
|
|
764
915
|
- lib/tasks/docs.rake
|
765
916
|
- lib/tasks/faalis_tasks.rake
|
766
917
|
- lib/tasks/sync.rake
|
767
|
-
-
|
768
|
-
-
|
769
|
-
-
|
770
|
-
-
|
771
|
-
-
|
772
|
-
-
|
773
|
-
-
|
774
|
-
-
|
775
|
-
-
|
776
|
-
-
|
777
|
-
-
|
778
|
-
-
|
779
|
-
-
|
780
|
-
-
|
781
|
-
-
|
782
|
-
-
|
783
|
-
-
|
784
|
-
-
|
785
|
-
-
|
786
|
-
-
|
787
|
-
-
|
788
|
-
-
|
789
|
-
-
|
790
|
-
-
|
791
|
-
-
|
792
|
-
-
|
793
|
-
-
|
794
|
-
-
|
795
|
-
-
|
796
|
-
-
|
797
|
-
-
|
798
|
-
-
|
799
|
-
-
|
800
|
-
-
|
801
|
-
-
|
802
|
-
-
|
803
|
-
-
|
804
|
-
-
|
805
|
-
-
|
806
|
-
-
|
807
|
-
-
|
808
|
-
-
|
809
|
-
-
|
810
|
-
-
|
811
|
-
-
|
812
|
-
-
|
813
|
-
-
|
814
|
-
-
|
815
|
-
-
|
816
|
-
-
|
817
|
-
-
|
818
|
-
-
|
819
|
-
-
|
820
|
-
-
|
821
|
-
-
|
822
|
-
- spec/models/faalis/user_spec.rb
|
823
|
-
- spec/policies/faalis/admin_only_policy_spec.rb
|
824
|
-
- spec/policies/faalis/application_policy_spec.rb
|
825
|
-
- spec/spec_helper.rb
|
826
|
-
- spec/support/factory_girl.rb
|
918
|
+
- test/dummy/README.rdoc
|
919
|
+
- test/dummy/Rakefile
|
920
|
+
- test/dummy/app/assets/javascripts/application.js
|
921
|
+
- test/dummy/app/assets/javascripts/dashboard/application.js
|
922
|
+
- test/dummy/app/assets/stylesheets/application.css
|
923
|
+
- test/dummy/app/assets/stylesheets/dashboard/ltr/application.css
|
924
|
+
- test/dummy/app/assets/stylesheets/dashboard/rtl/application.css
|
925
|
+
- test/dummy/app/assets/stylesheets/ltr/application.css
|
926
|
+
- test/dummy/app/assets/stylesheets/rtl/application.css
|
927
|
+
- test/dummy/app/controllers/api_controller.rb
|
928
|
+
- test/dummy/app/controllers/application_controller.rb
|
929
|
+
- test/dummy/app/controllers/dashboard/application_controller.rb
|
930
|
+
- test/dummy/app/helpers/application_helper.rb
|
931
|
+
- test/dummy/app/policies/application_policy.rb
|
932
|
+
- test/dummy/app/views/layouts/application.html.erb
|
933
|
+
- test/dummy/bin/bundle
|
934
|
+
- test/dummy/bin/rails
|
935
|
+
- test/dummy/bin/rake
|
936
|
+
- test/dummy/config.ru
|
937
|
+
- test/dummy/config/application.rb
|
938
|
+
- test/dummy/config/boot.rb
|
939
|
+
- test/dummy/config/database.yml
|
940
|
+
- test/dummy/config/environment.rb
|
941
|
+
- test/dummy/config/environments/development.rb
|
942
|
+
- test/dummy/config/environments/production.rb
|
943
|
+
- test/dummy/config/environments/test.rb
|
944
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
945
|
+
- test/dummy/config/initializers/devise.rb
|
946
|
+
- test/dummy/config/initializers/faalis.rb
|
947
|
+
- test/dummy/config/initializers/faalis_assets.rb
|
948
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
949
|
+
- test/dummy/config/initializers/formstatic.rb
|
950
|
+
- test/dummy/config/initializers/formtastic.rb
|
951
|
+
- test/dummy/config/initializers/inflections.rb
|
952
|
+
- test/dummy/config/initializers/kaminari_config.rb
|
953
|
+
- test/dummy/config/initializers/mime_types.rb
|
954
|
+
- test/dummy/config/initializers/secret_token.rb
|
955
|
+
- test/dummy/config/initializers/session_store.rb
|
956
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
957
|
+
- test/dummy/config/locales/en.yml
|
958
|
+
- test/dummy/config/routes.rb
|
959
|
+
- test/dummy/db/test.sqlite3
|
960
|
+
- test/dummy/lib/templates/slim/scaffold/_form.html.slim
|
961
|
+
- test/dummy/log/test.log
|
962
|
+
- test/dummy/public/404.html
|
963
|
+
- test/dummy/public/422.html
|
964
|
+
- test/dummy/public/500.html
|
965
|
+
- test/dummy/public/favicon.ico
|
966
|
+
- test/fabricators/faalis/groups.rb
|
967
|
+
- test/fabricators/faalis/permissions.rb
|
968
|
+
- test/fabricators/faalis/users.rb
|
969
|
+
- test/generators/install_generator_test.rb
|
970
|
+
- test/integration/faalis/authentication_test.rb
|
971
|
+
- test/integration/faalis/dashboard_test.rb
|
972
|
+
- test/test_helper.rb
|
827
973
|
homepage: http://faalis.io
|
828
974
|
licenses:
|
829
975
|
- GPL-2
|
@@ -850,64 +996,59 @@ specification_version: 4
|
|
850
996
|
summary: Faalis is a ruby on rails engine which provides a platform to easily build
|
851
997
|
a web application
|
852
998
|
test_files:
|
853
|
-
-
|
854
|
-
-
|
855
|
-
-
|
856
|
-
-
|
857
|
-
-
|
858
|
-
-
|
859
|
-
-
|
860
|
-
-
|
861
|
-
-
|
862
|
-
-
|
863
|
-
-
|
864
|
-
-
|
865
|
-
-
|
866
|
-
-
|
867
|
-
-
|
868
|
-
-
|
869
|
-
-
|
870
|
-
-
|
871
|
-
-
|
872
|
-
-
|
873
|
-
-
|
874
|
-
-
|
875
|
-
-
|
876
|
-
-
|
877
|
-
-
|
878
|
-
-
|
879
|
-
-
|
880
|
-
-
|
881
|
-
-
|
882
|
-
-
|
883
|
-
-
|
884
|
-
-
|
885
|
-
-
|
886
|
-
-
|
887
|
-
-
|
888
|
-
-
|
889
|
-
-
|
890
|
-
-
|
891
|
-
-
|
892
|
-
-
|
893
|
-
-
|
894
|
-
-
|
895
|
-
-
|
896
|
-
-
|
897
|
-
-
|
898
|
-
-
|
899
|
-
-
|
900
|
-
-
|
901
|
-
-
|
902
|
-
-
|
903
|
-
-
|
904
|
-
-
|
905
|
-
-
|
906
|
-
-
|
907
|
-
-
|
908
|
-
- spec/factories/faalis/permissions.rb
|
909
|
-
- spec/factories/faalis/groups.rb
|
910
|
-
- spec/features/dashboard_spec.rb
|
911
|
-
- spec/features/sign_in_spec.rb
|
912
|
-
- spec/features/record_not_found_spec.rb
|
999
|
+
- test/fabricators/faalis/users.rb
|
1000
|
+
- test/fabricators/faalis/permissions.rb
|
1001
|
+
- test/fabricators/faalis/groups.rb
|
1002
|
+
- test/integration/faalis/dashboard_test.rb
|
1003
|
+
- test/integration/faalis/authentication_test.rb
|
1004
|
+
- test/test_helper.rb
|
1005
|
+
- test/generators/install_generator_test.rb
|
1006
|
+
- test/dummy/public/422.html
|
1007
|
+
- test/dummy/public/500.html
|
1008
|
+
- test/dummy/public/404.html
|
1009
|
+
- test/dummy/public/favicon.ico
|
1010
|
+
- test/dummy/Rakefile
|
1011
|
+
- test/dummy/config.ru
|
1012
|
+
- test/dummy/config/application.rb
|
1013
|
+
- test/dummy/config/initializers/session_store.rb
|
1014
|
+
- test/dummy/config/initializers/faalis.rb
|
1015
|
+
- test/dummy/config/initializers/devise.rb
|
1016
|
+
- test/dummy/config/initializers/formstatic.rb
|
1017
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
1018
|
+
- test/dummy/config/initializers/faalis_assets.rb
|
1019
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
1020
|
+
- test/dummy/config/initializers/mime_types.rb
|
1021
|
+
- test/dummy/config/initializers/inflections.rb
|
1022
|
+
- test/dummy/config/initializers/kaminari_config.rb
|
1023
|
+
- test/dummy/config/initializers/formtastic.rb
|
1024
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
1025
|
+
- test/dummy/config/initializers/secret_token.rb
|
1026
|
+
- test/dummy/config/database.yml
|
1027
|
+
- test/dummy/config/boot.rb
|
1028
|
+
- test/dummy/config/environments/production.rb
|
1029
|
+
- test/dummy/config/environments/test.rb
|
1030
|
+
- test/dummy/config/environments/development.rb
|
1031
|
+
- test/dummy/config/locales/en.yml
|
1032
|
+
- test/dummy/config/routes.rb
|
1033
|
+
- test/dummy/config/environment.rb
|
1034
|
+
- test/dummy/app/assets/javascripts/dashboard/application.js
|
1035
|
+
- test/dummy/app/assets/javascripts/application.js
|
1036
|
+
- test/dummy/app/assets/stylesheets/rtl/application.css
|
1037
|
+
- test/dummy/app/assets/stylesheets/application.css
|
1038
|
+
- test/dummy/app/assets/stylesheets/ltr/application.css
|
1039
|
+
- test/dummy/app/assets/stylesheets/dashboard/rtl/application.css
|
1040
|
+
- test/dummy/app/assets/stylesheets/dashboard/ltr/application.css
|
1041
|
+
- test/dummy/app/views/layouts/application.html.erb
|
1042
|
+
- test/dummy/app/policies/application_policy.rb
|
1043
|
+
- test/dummy/app/helpers/application_helper.rb
|
1044
|
+
- test/dummy/app/controllers/api_controller.rb
|
1045
|
+
- test/dummy/app/controllers/application_controller.rb
|
1046
|
+
- test/dummy/app/controllers/dashboard/application_controller.rb
|
1047
|
+
- test/dummy/bin/rails
|
1048
|
+
- test/dummy/bin/rake
|
1049
|
+
- test/dummy/bin/bundle
|
1050
|
+
- test/dummy/db/test.sqlite3
|
1051
|
+
- test/dummy/lib/templates/slim/scaffold/_form.html.slim
|
1052
|
+
- test/dummy/log/test.log
|
1053
|
+
- test/dummy/README.rdoc
|
913
1054
|
has_rdoc:
|