mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 03:21:56 +02:00
Merge pull request #687 from sharelatex/ja-fix-subscription-upsell
Fix check for hasSubscription
This commit is contained in:
@@ -214,7 +214,7 @@ module.exports = ProjectController =
|
||||
tags: tags
|
||||
notifications: notifications or []
|
||||
user: user
|
||||
hasSubscription: results.hasSubscription[0]
|
||||
hasSubscription: results.hasSubscription
|
||||
isShowingV1Projects: results.v1Projects?
|
||||
warnings: warnings
|
||||
}
|
||||
|
||||
@@ -305,6 +305,20 @@ describe "ProjectController", ->
|
||||
done()
|
||||
@ProjectController.projectListPage @req, @res
|
||||
|
||||
it 'should send hasSubscription == false when no subscription', (done) ->
|
||||
@res.render = (pageName, opts)=>
|
||||
opts.hasSubscription.should.equal false
|
||||
done()
|
||||
@ProjectController.projectListPage @req, @res
|
||||
|
||||
it 'should send hasSubscription == true when there is a subscription', (done) ->
|
||||
@LimitationsManager.userHasSubscriptionOrIsGroupMember = sinon.stub().callsArgWith(1, null, true)
|
||||
@res.render = (pageName, opts)=>
|
||||
opts.hasSubscription.should.equal true
|
||||
done()
|
||||
@ProjectController.projectListPage @req, @res
|
||||
|
||||
|
||||
describe 'front widget', (done) ->
|
||||
beforeEach ->
|
||||
@settings.overleaf =
|
||||
|
||||
Reference in New Issue
Block a user